Interface SelectItem
- All Superinterfaces:
- OrderByItem
- All Known Subinterfaces:
- Aggregate,- DomainObject,- Expression,- PathExpression
- All Known Implementing Classes:
- AbsExpression,- AbstractDomainObject,- ArrayExpression,- AverageExpression,- BinaryOperatorExpression,- ConcatExpression,- CountExpression,- CurrentTimeExpression,- DistinctExpression,- DividedByExpression,- ElseExpression,- EntryExpression,- FetchPath,- IndexExpression,- JoinPath,- KeyExpression,- LengthExpression,- LiteralExpression,- LocateExpression,- LowerExpression,- MaxExpression,- MinExpression,- MinusExpression,- NewInstance,- OperatorPath,- ParameterExpression,- PlusExpression,- QueryDefinitionImpl,- RangeExpression,- RootPath,- SizeExpression,- SquareRootExpression,- SubStringExpression,- SumExpression,- TimesExpression,- TrimExpression,- TypeExpression,- UnaryMinusExpression,- UpperExpression,- ValueExpression,- VarArgsExpression
SelectItem instances are used in specifying the query's select list.
 
 The methods of this interface are used to define arguments that can be passed
 to the orderBy method for use in ordering selected items of the query result.
- 
Method Details- 
ascOrderByItem asc()Return an OrderByItem referencing the SelectItem and specifying ascending ordering. The SelectItem must correspond to an orderable value.- Returns:
- order-by item
 
- 
descOrderByItem desc()Return an OrderByItem referencing the SelectItem and specifying descending ordering. The SelectItem must correspond to an orderable value.- Returns:
- order-by item
 
 
-