| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object o)
Compare this to given QueryEnumerator to check if equals.
|
int |
getCount()
Gets the number of rows in the QueryEnumerator.
|
QueryRow |
getRow(int index)
Gets the QueryRow at the specified index in the results.
|
long |
getSequenceNumber()
Gets the Database's current sequence number at the time the View was generated for the results.
|
boolean |
hasNext()
Required to satisfy java Iterator interface
|
boolean |
isStale()
True if the database has changed since the view was generated.
|
java.util.Iterator<QueryRow> |
iterator() |
QueryRow |
next()
Gets the next QueryRow from the results, or null
if there are no more results.
|
void |
remove()
Required to satisfy java Iterator interface
|
void |
reset()
Resets the enumeration so the next call to -nextObject or -nextRow will return the first row.
|
public int getCount()
public long getSequenceNumber()
public QueryRow next()
next in interface java.util.Iterator<QueryRow>public QueryRow getRow(int index)
public boolean equals(java.lang.Object o)
equals in class java.lang.Objecto - the QueryEnumerator to compare this instance with.public boolean hasNext()
hasNext in interface java.util.Iterator<QueryRow>public void remove()
remove in interface java.util.Iterator<QueryRow>public boolean isStale()
public void reset()