Package com.db4o.internal.qlin
Class QLinSodaNode<T>
- java.lang.Object
-
- com.db4o.internal.qlin.QLinNode<T>
-
- com.db4o.internal.qlin.QLinSodaNode<T>
-
- All Implemented Interfaces:
QLin<T>
- Direct Known Subclasses:
QLinRoot
,QLinSubNode
public abstract class QLinSodaNode<T> extends QLinNode<T>
-
-
Constructor Summary
Constructors Constructor Description QLinSodaNode()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description QLin<T>
orderBy(java.lang.Object expression, QLinOrderByDirection direction)
orders the query by the expression.protected abstract QLinRoot<T>
root()
QLin<T>
where(java.lang.Object expression)
adds a where node to this QLin query.-
Methods inherited from class com.db4o.internal.qlin.QLinNode
equal, greater, single, singleOrDefault, smaller, startsWith
-
-
-
-
Method Detail
-
where
public QLin<T> where(java.lang.Object expression)
Description copied from interface:QLin
adds a where node to this QLin query.- Parameters:
expression
- can be any of the following:
-
orderBy
public QLin<T> orderBy(java.lang.Object expression, QLinOrderByDirection direction)
Description copied from interface:QLin
orders the query by the expression. Use theQLinSupport.ascending()
andQLinSupport.descending()
helper methods to set the direction.
-
-