Enum Class DataType

java.lang.Object
java.lang.Enum<DataType>
org.mariadb.jdbc.client.DataType
All Implemented Interfaces:
Serializable, Comparable<DataType>, Constable

public enum DataType extends Enum<DataType>
  • Enum Constant Details

    • OLDDECIMAL

      public static final DataType OLDDECIMAL
    • TINYINT

      public static final DataType TINYINT
    • SMALLINT

      public static final DataType SMALLINT
    • INTEGER

      public static final DataType INTEGER
    • FLOAT

      public static final DataType FLOAT
    • DOUBLE

      public static final DataType DOUBLE
    • NULL

      public static final DataType NULL
    • TIMESTAMP

      public static final DataType TIMESTAMP
    • BIGINT

      public static final DataType BIGINT
    • MEDIUMINT

      public static final DataType MEDIUMINT
    • DATE

      public static final DataType DATE
    • TIME

      public static final DataType TIME
    • DATETIME

      public static final DataType DATETIME
    • YEAR

      public static final DataType YEAR
    • NEWDATE

      public static final DataType NEWDATE
    • VARCHAR

      public static final DataType VARCHAR
    • BIT

      public static final DataType BIT
    • JSON

      public static final DataType JSON
    • DECIMAL

      public static final DataType DECIMAL
    • ENUM

      public static final DataType ENUM
    • SET

      public static final DataType SET
    • TINYBLOB

      public static final DataType TINYBLOB
    • MEDIUMBLOB

      public static final DataType MEDIUMBLOB
    • LONGBLOB

      public static final DataType LONGBLOB
    • BLOB

      public static final DataType BLOB
    • VARSTRING

      public static final DataType VARSTRING
    • STRING

      public static final DataType STRING
    • GEOMETRY

      public static final DataType GEOMETRY
  • Field Details

  • Constructor Details

  • Method Details

    • values

      public static DataType[] 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 DataType 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
    • of

      public static DataType of(int typeValue)
    • get

      public int get()
    • getColumnConstructor

      public DataType.ColumnConstructor getColumnConstructor()
    • getUnsignedColumnConstructor

      public DataType.ColumnConstructor getUnsignedColumnConstructor()