Module org.jooq
Package org.jooq.conf

Enum Class RenderNameStyle

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

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

Java class for RenderNameStyle.

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

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

    • QUOTED

      public static final RenderNameStyle QUOTED
      Deprecated.
      Render object names quoted, as defined in the database. Use this to stay on the safe side with case-sensitivity and special characters. For instance: Oracle : "SYS"."ALL_TAB_COLS" MySQL : `information_schema`.`TABLES` SQL Server: [INFORMATION_SCHEMA].[TABLES]
    • AS_IS

      public static final RenderNameStyle AS_IS
      Deprecated.
      Render object names, as defined in the database. For instance: Oracle : SYS.ALL_TAB_COLS MySQL : information_schema.TABLES SQL Server: INFORMATION_SCHEMA.TABLES
    • LOWER

      public static final RenderNameStyle LOWER
      Deprecated.
      Force rendering object names in lower case. For instance: Oracle : sys.all_tab_cols MySQL : information_schema.tables SQL Server: information_schema.tables
    • UPPER

      public static final RenderNameStyle UPPER
      Deprecated.
      Force rendering object names in upper case. For instance: Oracle : SYS.ALL_TAB_COLS MySQL : INFORMATION_SCHEMA.TABLES SQL Server: INFORMATION_SCHEMA.TABLES
  • Method Details

    • values

      public static RenderNameStyle[] 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 RenderNameStyle 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 RenderNameStyle fromValue(String v)
      Deprecated.