Enum Keyword

java.lang.Object
java.lang.Enum<Keyword>
com.invirgance.convirgance.jdbc.sql.Keyword
All Implemented Interfaces:
Serializable, Comparable<Keyword>, java.lang.constant.Constable

public enum Keyword extends Enum<Keyword>
Author:
jbanes
  • Enum Constant Details

    • SELECT

      public static final Keyword SELECT
    • FROM

      public static final Keyword FROM
    • AS

      public static final Keyword AS
    • WHERE

      public static final Keyword WHERE
    • INSERT

      public static final Keyword INSERT
    • INTO

      public static final Keyword INTO
    • VALUES

      public static final Keyword VALUES
    • ORDER

      public static final Keyword ORDER
    • BY

      public static final Keyword BY
    • ASC

      public static final Keyword ASC
    • DESC

      public static final Keyword DESC
    • GROUP

      public static final Keyword GROUP
    • HAVING

      public static final Keyword HAVING
    • AND

      public static final Keyword AND
    • OR

      public static final Keyword OR
    • NOT

      public static final Keyword NOT
  • Method Details

    • values

      public static Keyword[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static Keyword 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
    • getLowerCase

      public String getLowerCase()
    • getUpperCase

      public String getUpperCase()
    • toString

      public String toString()
      Overrides:
      toString in class Enum<Keyword>