Uses of Class
io.quarkus.panache.common.Sort
Packages that use Sort
-
Uses of Sort in io.quarkus.panache.common
Methods in io.quarkus.panache.common that return SortModifier and TypeMethodDescriptionAdds a sort column, in ascending order.Sort.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.Sort.and(String name, Sort.NullPrecedence nullPrecedence) Adds a sort column, in the given null precedence.Sort.ascending()Sets the order to ascending for all current sort columns.static SortSort by the given columns, in ascending order.static SortSort by the given column, in ascending order.static SortSort by the given columns, in ascending order.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.static SortSort.by(String column, Sort.NullPrecedence nullPrecedence) Sort by the given column, in the given order and in the given null precedence.Sort.descending()Sets the order to descending for all current sort columns.static SortSort.descending(String... columns) Sort by the given columns, in descending order.Sort.direction(Sort.Direction direction) Sets the order to all current sort columns.Sort.disableEscaping()Disables escaping of column names with a backticks during HQL Order By clause generationstatic SortSort.empty()Creates an Empty Sort instance.