Module watamebot

Enum Class SQLDataType

java.lang.Object
java.lang.Enum<SQLDataType>
net.foxgenesis.config.fields.SQLDataType
All Implemented Interfaces:
Serializable, Comparable<SQLDataType>, Constable

@Deprecated(forRemoval=true) public enum SQLDataType extends Enum<SQLDataType>
Deprecated, for removal: This API element is subject to removal in a future version.
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final String
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Method Summary

    Modifier and Type
    Method
    Description
    ofLength(int l)
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ofPrecision(int p)
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ofPrecisionAndScale(int p, int s)
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
    Returns the enum constant of this class with the specified name.
    static SQLDataType[]
    Deprecated, for removal: This API element is subject to removal in a future version.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • CHAR

      public static final SQLDataType CHAR
      Deprecated, for removal: This API element is subject to removal in a future version.
    • VARCHAR

      public static final SQLDataType VARCHAR
      Deprecated, for removal: This API element is subject to removal in a future version.
    • SMALLINT

      public static final SQLDataType SMALLINT
      Deprecated, for removal: This API element is subject to removal in a future version.
    • INT

      public static final SQLDataType INT
      Deprecated, for removal: This API element is subject to removal in a future version.
    • DEC

      public static final SQLDataType DEC
      Deprecated, for removal: This API element is subject to removal in a future version.
    • NUMERIC

      public static final SQLDataType NUMERIC
      Deprecated, for removal: This API element is subject to removal in a future version.
    • REAL

      public static final SQLDataType REAL
      Deprecated, for removal: This API element is subject to removal in a future version.
    • FLOAT

      public static final SQLDataType FLOAT
      Deprecated, for removal: This API element is subject to removal in a future version.
    • DOUBLE_PRECISION

      public static final SQLDataType DOUBLE_PRECISION
      Deprecated, for removal: This API element is subject to removal in a future version.
    • DATE

      public static final SQLDataType DATE
      Deprecated, for removal: This API element is subject to removal in a future version.
    • TIME

      public static final SQLDataType TIME
      Deprecated, for removal: This API element is subject to removal in a future version.
    • TIMESTAMP

      public static final SQLDataType TIMESTAMP
      Deprecated, for removal: This API element is subject to removal in a future version.
    • CLOB

      public static final SQLDataType CLOB
      Deprecated, for removal: This API element is subject to removal in a future version.
    • BLOB

      public static final SQLDataType BLOB
      Deprecated, for removal: This API element is subject to removal in a future version.
    • JSON

      public static final SQLDataType JSON
      Deprecated, for removal: This API element is subject to removal in a future version.
  • Field Details

    • name

      public final String name
      Deprecated, for removal: This API element is subject to removal in a future version.
  • Method Details

    • values

      public static SQLDataType[] values()
      Deprecated, for removal: This API element is subject to removal in a future version.
      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 SQLDataType valueOf(String name)
      Deprecated, for removal: This API element is subject to removal in a future version.
      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
    • ofLength

      public String ofLength(int l)
      Deprecated, for removal: This API element is subject to removal in a future version.
    • ofPrecision

      public String ofPrecision(int p)
      Deprecated, for removal: This API element is subject to removal in a future version.
    • ofPrecisionAndScale

      public String ofPrecisionAndScale(int p, int s)
      Deprecated, for removal: This API element is subject to removal in a future version.
    • toString

      public String toString()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Overrides:
      toString in class Enum<SQLDataType>