Uses of Class
org.springframework.data.relational.core.sql.OrderByField
Packages that use OrderByField
Package
Description
JDBC-specific conversion classes.
Query and update support.
Statement Builder implementation.
-
Uses of OrderByField in org.springframework.data.jdbc.core.convert
Methods in org.springframework.data.jdbc.core.convert that return types with arguments of type OrderByFieldModifier and TypeMethodDescriptionQueryMapper.getMappedSort(Table table, Sort sort, RelationalPersistentEntity<?> entity) Map theSortobject to apply field name mapping usingthe type to read. -
Uses of OrderByField in org.springframework.data.r2dbc.query
Methods in org.springframework.data.r2dbc.query that return types with arguments of type OrderByFieldModifier and TypeMethodDescriptionQueryMapper.getMappedSort(Table table, Sort sort, RelationalPersistentEntity<?> entity) Map theSortobject to apply field name mapping usingthe type to read. -
Uses of OrderByField in org.springframework.data.relational.core.sql
Methods in org.springframework.data.relational.core.sql that return OrderByFieldModifier and TypeMethodDescriptionOrderByField.asc()Creates a newOrderByFieldfrom a the current one using ascending sorting.OrderByField.desc()Creates a newOrderByFieldfrom a 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) SelectBuilder.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.