Uses of Class
org.springframework.data.relational.core.sql.OrderByField
Packages that use OrderByField
-
Uses of OrderByField in org.springframework.data.relational.core.sql
Subclasses with type arguments of type OrderByField in org.springframework.data.relational.core.sqlMethods in org.springframework.data.relational.core.sql that return OrderByFieldModifier and TypeMethodDescriptionOrderByField.asc()Creates a newOrderByFieldfrom the current one using ascending sorting.OrderByField.desc()Creates a newOrderByFieldfrom the current one using descending sorting.static OrderByFieldOrderByField.from(Expression expression) Creates a newOrderByFieldfrom anExpressionapplying default ordering.static OrderByFieldOrderByField.from(Expression expression, Sort.Direction direction) Creates a newOrderByFieldfrom anExpressionapplying a given ordering.OrderByField.withNullHandling(Sort.NullHandling nullHandling) Creates a newOrderByFieldwithSort.NullHandlingapplied.Methods in org.springframework.data.relational.core.sql that return types with arguments of type OrderByFieldMethods in org.springframework.data.relational.core.sql with parameters of type OrderByFieldModifier and TypeMethodDescriptionAnalyticFunction.orderBy(OrderByField... orderBy) Specify the ORDER BY clause of an analytic functionSelectBuilder.SelectFromAndOrderBy.orderBy(OrderByField... orderByFields) SelectBuilder.SelectOrdered.orderBy(OrderByField... orderByFields) Add one or moreorder by fields.Method parameters in org.springframework.data.relational.core.sql with type arguments of type OrderByFieldModifier and TypeMethodDescriptionSelectBuilder.SelectFromAndOrderBy.orderBy(Collection<? extends OrderByField> orderByFields) SelectBuilder.SelectOrdered.orderBy(Collection<? extends OrderByField> orderByFields) Add one or moreorder by fields.