Enum NodeType

    • Enum Constant Detail

      • UNDEFINED

        public static final NodeType UNDEFINED
      • VALUE

        public static final NodeType VALUE
      • COLUMN

        public static final NodeType COLUMN
      • LIMIT_OFFSET

        public static final NodeType LIMIT_OFFSET
      • FUNCTION

        public static final NodeType FUNCTION
      • EQUALITY

        public static final NodeType EQUALITY
      • LIKE

        public static final NodeType LIKE
      • DISTINCT

        public static final NodeType DISTINCT
      • RESULT

        public static final NodeType RESULT
      • WHERE

        public static final NodeType WHERE
      • JOIN

        public static final NodeType JOIN
      • FROM

        public static final NodeType FROM
      • UPDATE_SET

        public static final NodeType UPDATE_SET
      • INSERT_COLUMNS

        public static final NodeType INSERT_COLUMNS
      • INSERT_VALUES

        public static final NodeType INSERT_VALUES
      • ORDER_BY

        public static final NodeType ORDER_BY
      • SELECT

        public static final NodeType SELECT
    • Method Detail

      • values

        public static NodeType[] 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 (NodeType c : NodeType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static NodeType 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