Module org.jooq
Package org.jooq.conf

Enum Class DiagnosticsConnection

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

public enum DiagnosticsConnection extends Enum<DiagnosticsConnection>

Java class for DiagnosticsConnection.

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

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

    • DEFAULT Link icon

      public static final DiagnosticsConnection DEFAULT
      The DiagnosticsConnection is turned on if used explicitly.
    • ON Link icon

      public static final DiagnosticsConnection ON
      The DiagnosticsConnection is always turned on for any user connection.
    • OFF Link icon

      public static final DiagnosticsConnection OFF
      The DiagnosticsConnection is turned off, even when used explicitly.
  • Method Details Link icon

    • values Link icon

      public static DiagnosticsConnection[] 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 Link icon

      public static DiagnosticsConnection 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 Link icon

      public String value()
    • fromValue Link icon

      public static DiagnosticsConnection fromValue(String v)