Uses of Class
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.Direction Modifier and Type Method Description static Sort.DirectionSort.Direction. fromString(String value)Returns theSort.Directionenum for the givenStringvalue.static Sort.DirectionSort.Direction. fromStringOrNull(String value)Sort.DirectionSort.Order. getDirection()Returns the sort direction.static Sort.DirectionSort.Direction. valueOf(String name)Returns 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.Direction Modifier and Type Method Description Sort.OrderSort.Order. with(Sort.Direction direction)Returns a newSort.Orderwith the givenSort.Direction.Constructors in com.blazebit.persistence.deltaspike.data with parameters of type Sort.Direction Constructor Description Order(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.