Package com.sap.cds.ql
Interface Orderable
- All Known Subinterfaces:
BooleanValue
,ElementRef<T>
,FunctionCall<T>
,Literal<T>
,NullValue
,Parameter<T>
,Value<T>
,WindowFunctionCall<T>
public interface Orderable
-
Method Details
-
asc
CqnSortSpecification asc()Ascending order with null values before non-null values. -
ascNullsLast
CqnSortSpecification ascNullsLast()Ascending order with null values after non-null values. -
desc
CqnSortSpecification desc()Descending order with null values after non-null values. -
descNullsFirst
CqnSortSpecification descNullsFirst()Descending order with null values before non-null values.
-