Package com.db4o.internal.qlin
Class QLinRoot<T>
- java.lang.Object
-
- com.db4o.internal.qlin.QLinNode<T>
-
- com.db4o.internal.qlin.QLinSodaNode<T>
-
- com.db4o.internal.qlin.QLinRoot<T>
-
- All Implemented Interfaces:
QLin<T>
public class QLinRoot<T> extends QLinSodaNode<T>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description QLin<T>
limit(int size)
Query
query()
protected QLinRoot<T>
root()
ObjectSet<T>
select()
executes the QLin query and returns the result as anObjectSet
.-
Methods inherited from class com.db4o.internal.qlin.QLinSodaNode
orderBy, where
-
Methods inherited from class com.db4o.internal.qlin.QLinNode
equal, greater, single, singleOrDefault, smaller, startsWith
-
-
-
-
Method Detail
-
query
public Query query()
-
select
public ObjectSet<T> select()
Description copied from interface:QLin
executes the QLin query and returns the result as anObjectSet
. Note that ObjectSet extends List and Iterable on the platforms that support these interfaces. You may want to use these interfaces instead of working directly against an ObjectSet.
-
root
protected QLinRoot<T> root()
- Specified by:
root
in classQLinSodaNode<T>
-
-