1 24 package org.objectweb.jalisto.se.api; 25 26 import java.util.Collection ; 27 import java.util.Iterator ; 28 29 public interface Extent { 30 31 boolean isEmpty(); 32 33 int size(); 34 35 boolean contains(Object object); 36 37 Extent readFully(); 38 39 Extent readNextFloids(int number); 40 41 Iterator iterator(); 42 43 Collection collection(); 44 45 void cleanFloids(); 46 } 47 | Popular Tags |