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 SummaryConstructors Constructor Description QLinSodaNode()
 - 
Method SummaryAll 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.QLinNodeequal, greater, single, singleOrDefault, smaller, startsWith
 
- 
 
- 
- 
- 
Method Detail- 
wherepublic QLin<T> where(java.lang.Object expression) Description copied from interface:QLinadds a where node to this QLin query.- Parameters:
- expression- can be any of the following:
 
 - 
orderBypublic QLin<T> orderBy(java.lang.Object expression, QLinOrderByDirection direction) Description copied from interface:QLinorders the query by the expression. Use theQLinSupport.ascending()andQLinSupport.descending()helper methods to set the direction.
 
- 
 
-