Uses of Enum Class
io.quarkus.panache.common.Sort.Direction
Packages that use Sort.Direction
-
Uses of Sort.Direction in io.quarkus.panache.common
Methods in io.quarkus.panache.common that return Sort.DirectionModifier and TypeMethodDescriptionSort.Column.getDirection()static Sort.DirectionReturns the enum constant of this class with the specified name.static Sort.Direction[]Sort.Direction.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in io.quarkus.panache.common with parameters of type Sort.DirectionModifier and TypeMethodDescriptionSort.and(String name, Sort.Direction direction) Adds a sort column, in the given order.Sort.and(String name, Sort.Direction direction, Sort.NullPrecedence nullPrecedence) Adds a sort column, in the given order and null precedence.static SortSort.by(String column, Sort.Direction direction) Sort by the given column, in the given order.static SortSort.by(String column, Sort.Direction direction, Sort.NullPrecedence nullPrecedence) Sort by the given column, in the given order and in the given null precedence.Sort.direction(Sort.Direction direction) Sets the order to all current sort columns.voidSort.Column.setDirection(Sort.Direction direction) Constructors in io.quarkus.panache.common with parameters of type Sort.DirectionModifierConstructorDescriptionColumn(String name, Sort.Direction direction) Column(String name, Sort.Direction direction, Sort.NullPrecedence nullPrecedence)