public enum Type extends Enum<Type>
| Enum Constant and Description |
|---|
BIGINT |
BINARY |
BIT |
BLOB |
BOOLEAN |
CHAR |
CLOB |
DATE |
DECIMAL |
DOUBLE |
FLOAT |
INTEGER |
JAVA_OBJECT |
LONGNVARCHAR |
LONGVARBINARY |
LONGVARCHAR |
NCHAR |
NCLOB |
NUMERIC |
NVARCHAR |
REAL |
SMALLINT |
TIME |
TIMESTAMP |
TINYINT |
UNKNOW |
VARBINARY |
VARCHAR |
| Modifier and Type | Method and Description |
|---|---|
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 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 © 2021. All rights reserved.