public enum Type extends Enum<Type>
| Modifier and Type | Method and Description |
|---|---|
static Type |
getByTypeName(String typeName) |
static Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Type BIGINT
public static final Type BINARY
public static final Type BIT
public static final Type BLOB
public static final Type BOOLEAN
public static final Type CHAR
public static final Type CLOB
public static final Type DATE
public static final Type DECIMAL
public static final Type DOUBLE
public static final Type FLOAT
public static final Type INTEGER
public static final Type JAVA_OBJECT
public static final Type LONGNVARCHAR
public static final Type LONGVARBINARY
public static final Type LONGVARCHAR
public static final Type NCHAR
public static final Type NCLOB
public static final Type NUMERIC
public static final Type NVARCHAR
public static final Type UNKNOW
public static final Type REAL
public static final Type SMALLINT
public static final Type TIME
public static final Type TIMESTAMP
public static final Type TINYINT
public static final Type VARBINARY
public static final Type VARCHAR
public static final Type DATETIME
public static final Type MEDIUMINT
public static final Type INT
public static final Type TINYBLOB
public static final Type TINYTEXT
public static final Type TEXT
public static final Type MEDIUMBLOB
public static final Type MEDIUMTEXT
public static final Type LONGBLOB
public static final Type LONGTEXT
public static final Type YEAR
public static final Type JSON
public static final Type BINARY_FLOAT
public static final Type DOUBLE_PRECISION
public static final Type BINARY_DOUBLE
public static final Type TIMESTAMP_WITH_TIME_ZONE
public static final Type TIMESTAMP_WITH_LOCAL_TIME_ZONE
public static final Type VARCHAR2
public static final Type INTERVAL_YEAR_TO_MONTH
public static final Type INTERVAL_DAY_TO_SECOND
public static Type[] values()
for (Type c : Type.values()) System.out.println(c);
public static Type valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2022. All rights reserved.