| |
|
| java.lang.Object com.versant.core.jdo.QueryResultBase com.versant.core.jdo.ForwardQueryResult
ForwardQueryResult | final public class ForwardQueryResult extends QueryResultBase implements Serializable(Code) | | Forward only access to the results of a Query. This will rerieve all results
if any method requiring access to all results is called (e.g. size).
Otherwise it retrieves elements in batches.
See Also: QueryResult |
close | public void close()(Code) | | Close all the open iterator's.
|
createInternalIterNoFlush | public Iterator createInternalIterNoFlush()(Code) | | |
get | public Object get(int index)(Code) | | If the backingArray exist then the get should operate on it.
|
isCompiledQueryEqual | public boolean isCompiledQueryEqual(ForwardQueryResult qc)(Code) | | Is our compiledQuery the same as the one for qc?
|
isEmpty | public boolean isEmpty()(Code) | | |
size | public int size()(Code) | | All the results will be resolved and the size returned. If this is already been called the the size will just
be returned.
|
subList | public List subList(int fromIndex, int toIndex)(Code) | | |
toArray | public Object[] toArray()(Code) | | Resolves all the data and add it to array.
|
writeReplace | public Object writeReplace()(Code) | | Serialize out an ArrayList instead of ourselves.
|
|
|
|