Package me.axolotl.api.sql.enumerate
Enum Class TableType
- All Implemented Interfaces:
Serializable,Comparable<TableType>,Constable
TableType枚舉表示數據庫表列的數據類型。
- Since:
- 2024-02-24
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
-
Enum Constant Details
-
CHAR
字符類型。 -
VARCHAR
變長字符類型。 -
TEXT
文本類型。 -
INT
整數類型。 -
BIGINT
大整數類型。 -
DECIMAL
十進制類型。 -
DATE
日期類型。 -
TIME
時間類型。 -
TIMESTAMP
時間戳類型。 -
BINARY
二進制類型。 -
VARBINARY
變長二進制類型。 -
BLOB
二進制大對象類型。 -
BOOLEAN
布林類型。
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-