Uses of Class
io.quarkus.panache.common.Sort.Direction
-
Packages that use Sort.Direction Package Description io.quarkus.panache.common -
-
Uses of Sort.Direction in io.quarkus.panache.common
Methods in io.quarkus.panache.common that return Sort.Direction Modifier and Type Method Description Sort.DirectionSort.Column. getDirection()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 io.quarkus.panache.common with parameters of type Sort.Direction Modifier and Type Method Description SortSort. and(String name, Sort.Direction direction)Adds a sort column, in the given order.SortSort. 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.SortSort. 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.Direction Constructor Description Column(String name, Sort.Direction direction)Column(String name, Sort.Direction direction, Sort.NullPrecedence nullPrecedence)
-