| org.odbms.ObjectSet
All known Subclasses: org.apache.ojb.soda.ObjectSetImpl,
ObjectSet | public interface ObjectSet (Code) | | query resultset.
The ObjectSet interface providedes iterator functions to
navigate through a set of objects retrieved by a query.
|
Method Summary | |
public boolean | hasNext() returns true if the ObjectSet has more elements. | public Object | next() returns the next object in the ObjectSet . | public void | reset() resets the ObjectSet cursor before the first element. | public int | size() returns the number of elements in the ObjectSet . |
hasNext | public boolean hasNext()(Code) | | returns true if the ObjectSet has more elements.
boolean true if the ObjectSet has moreelements. |
next | public Object next()(Code) | | returns the next object in the ObjectSet .
the next object in the ObjectSet . |
reset | public void reset()(Code) | | resets the ObjectSet cursor before the first element.
A subsequent call to next() will return the first element.
|
size | public int size()(Code) | | returns the number of elements in the ObjectSet .
the number of elements in the ObjectSet . |
|
|