Uses of Enum
com.blazebit.persistence.deltaspike.data.Sort.Direction
-
Uses of Sort.Direction in com.blazebit.persistence.deltaspike.data
Methods in com.blazebit.persistence.deltaspike.data that return Sort.DirectionModifier and TypeMethodDescriptionstatic Sort.DirectionSort.Direction.fromString(String value) Returns theSort.Directionenum for the givenStringvalue.static Sort.DirectionSort.Direction.fromStringOrNull(String value) Sort.Order.getDirection()Returns the sort direction.static Sort.DirectionReturns the enum constant of this type with the specified name.static Sort.Direction[]Sort.Direction.values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.blazebit.persistence.deltaspike.data with parameters of type Sort.DirectionModifier and TypeMethodDescriptionSort.Order.with(Sort.Direction direction) Returns a newSort.Orderwith the givenSort.Direction.Constructors in com.blazebit.persistence.deltaspike.data with parameters of type Sort.DirectionModifierConstructorDescriptionOrder(Sort.Direction direction, String path) Creates a newSort.Orderwith the given direction and path.Order(Sort.Direction direction, String path, Sort.NullHandling nullHandling) Creates a newSort.Orderwith the given direction, path and null handling.PageRequest(int page, int pageSize, Sort.Direction direction, String... paths) Creates a newPageRequestwith a sorting based on the given paths and direction.Sort(Sort.Direction direction, String... paths) Creates a new Sort with the given paths the given direction.Sort(Sort.Direction direction, List<String> paths) Creates a new Sort with the given paths and given direction.