Enum Class JdbcType

java.lang.Object
java.lang.Enum<JdbcType>
cn.vonce.sql.enumerate.JdbcType
所有已实现的接口:
Serializable, Comparable<JdbcType>, java.lang.constant.Constable

public enum JdbcType extends Enum<JdbcType>
JdbcType枚举类
版本:
1.0
作者:
Jovi
  • 枚举常量详细资料

    • NOTHING

      public static final JdbcType NOTHING
    • TINYINT

      public static final JdbcType TINYINT
    • SMALLINT

      public static final JdbcType SMALLINT
    • MEDIUMINT

      public static final JdbcType MEDIUMINT
    • INT

      public static final JdbcType INT
    • INTEGER

      public static final JdbcType INTEGER
    • BOOLEAN

      public static final JdbcType BOOLEAN
    • BIGINT

      public static final JdbcType BIGINT
    • LONG

      public static final JdbcType LONG
    • NUMBER

      public static final JdbcType NUMBER
    • FLOAT

      public static final JdbcType FLOAT
    • DOUBLE

      public static final JdbcType DOUBLE
    • DECIMAL

      public static final JdbcType DECIMAL
    • REAL

      public static final JdbcType REAL
    • NUMERIC

      public static final JdbcType NUMERIC
    • MONEY

      public static final JdbcType MONEY
    • SMALLMONEY

      public static final JdbcType SMALLMONEY
    • YEAR

      public static final JdbcType YEAR
    • DATE

      public static final JdbcType DATE
    • TIME

      public static final JdbcType TIME
    • DATETIME

      public static final JdbcType DATETIME
    • DATETIME2

      public static final JdbcType DATETIME2
    • TIMESTAMP

      public static final JdbcType TIMESTAMP
    • CHAR

      public static final JdbcType CHAR
    • NCHAR

      public static final JdbcType NCHAR
    • VARCHAR

      public static final JdbcType VARCHAR
    • VARCHAR2

      public static final JdbcType VARCHAR2
    • NVARCHAR

      public static final JdbcType NVARCHAR
    • TINYTEXT

      public static final JdbcType TINYTEXT
    • TEXT

      public static final JdbcType TEXT
    • NTEXT

      public static final JdbcType NTEXT
    • MEDIUMTEXT

      public static final JdbcType MEDIUMTEXT
    • LONGTEXT

      public static final JdbcType LONGTEXT
    • BIT

      public static final JdbcType BIT
    • CLOB

      public static final JdbcType CLOB
    • NCLOB

      public static final JdbcType NCLOB
    • BLOB

      public static final JdbcType BLOB
    • MEDIUMBLOB

      public static final JdbcType MEDIUMBLOB
    • LONGBLOB

      public static final JdbcType LONGBLOB
    • NBLOB

      public static final JdbcType NBLOB
    • ARRAY

      public static final JdbcType ARRAY
    • IMAGE

      public static final JdbcType IMAGE
    • BYTEA

      public static final JdbcType BYTEA
    • JSON

      public static final JdbcType JSON
  • 方法详细资料

    • values

      public static JdbcType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      返回:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static JdbcType 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.)
      参数:
      name - 要返回的枚举常量的名称。
      返回:
      返回带有指定名称的枚举常量
      抛出:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - 如果参数为空值
    • getType

      public static JdbcType getType(String name)
    • isFloat

      public boolean isFloat()
    • getLength

      public long getLength()
    • getScale

      public int getScale()
    • getName

      public String getName(Boolean toUpperCase)