Module org.jooq
Package org.jooq.conf

Enum Class RenderKeywordStyle

java.lang.Object
java.lang.Enum<RenderKeywordStyle>
org.jooq.conf.RenderKeywordStyle
All Implemented Interfaces:
Serializable, Comparable<RenderKeywordStyle>, Constable

@Deprecated public enum RenderKeywordStyle extends Enum<RenderKeywordStyle>
Deprecated.

Java class for RenderKeywordStyle.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="RenderKeywordStyle">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="AS_IS"/>
     <enumeration value="LOWER"/>
     <enumeration value="UPPER"/>
     <enumeration value="PASCAL"/>
   </restriction>
 </simpleType>
 
  • Enum Constant Details

    • AS_IS

      public static final RenderKeywordStyle AS_IS
      Deprecated.
      Keywords are rendered "as is", i.e. mostly in lower case. For instance: select .. from .. where ..
    • LOWER

      public static final RenderKeywordStyle LOWER
      Deprecated.
      Keywords are rendered in lower case. For instance: select .. from .. where ..
    • UPPER

      public static final RenderKeywordStyle UPPER
      Deprecated.
      Keywords are rendered in upper case. For instance: SELECT .. FROM .. WHERE ..
    • PASCAL

      public static final RenderKeywordStyle PASCAL
      Deprecated.
      Keywords are rendered in Pascal Case. For instance: Select .. From .. Where ..
  • Method Details

    • values

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

      public static RenderKeywordStyle valueOf(String name)
      Deprecated.
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • value

      public String value()
      Deprecated.
    • fromValue

      public static RenderKeywordStyle fromValue(String v)
      Deprecated.