Enum Class GeneratedTextBlocks

java.lang.Object
java.lang.Enum<GeneratedTextBlocks>
org.jooq.meta.jaxb.GeneratedTextBlocks
All Implemented Interfaces:
Serializable, Comparable<GeneratedTextBlocks>, Constable

public enum GeneratedTextBlocks extends Enum<GeneratedTextBlocks>

Java class for GeneratedTextBlocks.

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

 <simpleType name="GeneratedTextBlocks">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="DETECT_FROM_JDK"/>
     <enumeration value="ON"/>
     <enumeration value="OFF"/>
   </restriction>
 </simpleType>
 
  • Enum Constant Details

    • DETECT_FROM_JDK

      public static final GeneratedTextBlocks DETECT_FROM_JDK
      Text blocks should be used in generated code (for database source code) depending on whether the JDK used for code generation supports text blocks.
    • ON

      public static final GeneratedTextBlocks ON
      Text blocks should be used in generated code (for database source code).
    • OFF

      public static final GeneratedTextBlocks OFF
      Text blocks should not be used in generated code.
  • Method Details

    • values

      public static GeneratedTextBlocks[] values()
      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 GeneratedTextBlocks valueOf(String name)
      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()
    • fromValue

      public static GeneratedTextBlocks fromValue(String v)