Class SortSpecifier


  • public class SortSpecifier
    extends Object
    Specifies a sort property and direction
    • Method Detail

      • asc

        public static SortSpecifier asc​(com.querydsl.core.types.Path<?> path)
        Sorts by the given path in ascending order
      • asc

        public static SortSpecifier asc​(Property<?,​?> property)
        Sorts by the given property in ascending order
      • desc

        public static SortSpecifier desc​(com.querydsl.core.types.Path<?> path)
        Sorts by the given path in descending order
      • desc

        public static SortSpecifier desc​(Property<?,​?> property)
        Sorts by the given property in descending order
      • getProperty

        public String getProperty()
      • isAscending

        public boolean isAscending()