Enum OrderByItem.NullOrdering

    • Enum Constant Detail

      • NULLS_FIRST

        public static final OrderByItem.NullOrdering NULLS_FIRST
        The constant for 'NULLS FIRST', which tells to order nulls first.
      • NULLS_LAST

        public static final OrderByItem.NullOrdering NULLS_LAST
        The constant for 'NULLS LAST', which tells to order nulls last.
    • Method Detail

      • values

        public static OrderByItem.NullOrdering[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (OrderByItem.NullOrdering c : OrderByItem.NullOrdering.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static OrderByItem.NullOrdering valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getIdentifier

        public String getIdentifier()
        Returns the actual JPQL composite identifiers identified by this enum constant.
        Returns:
        The composite identifiers