Interface OrderByOperation<T>
- Type Parameters:
T-
Order by ascending or descending operations and limit/execute operations.
- API:
- This is a public API.
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionOrders the result ascending (A..Z)Orders the result descending (Z..A)direction(OrderByOperation.Direction direction) Orders the result according to the givendirection.
-
Method Details
-
ascending
OrderByFieldOrLimit<T> ascending()Orders the result ascending (A..Z)- Returns:
- order by field, limit or execute operations
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility ADVANCED.
-
descending
OrderByFieldOrLimit<T> descending()Orders the result descending (Z..A)- Returns:
- order by field, limit or execute operations
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility ADVANCED.
-
direction
Orders the result according to the givendirection.- Parameters:
direction- either ascending or descending- Returns:
- order by field, limit or execute operations
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility ADVANCED.
-