public static enum SQLColumn.SQLColumnType extends Enum<SQLColumn.SQLColumnType>
| Enum Constant and Description |
|---|
AUTO |
BIGINT |
BINARY |
BLOB |
BOOLEAN |
CHAR |
CLOB |
DATE |
DOUBLE |
INTEGER |
REAL |
SMALLINT |
TIME |
TIMESTAMP |
VARCHAR |
| Modifier and Type | Method and Description |
|---|---|
static SQLColumn.SQLColumnType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SQLColumn.SQLColumnType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SQLColumn.SQLColumnType AUTO
public static final SQLColumn.SQLColumnType CHAR
public static final SQLColumn.SQLColumnType VARCHAR
public static final SQLColumn.SQLColumnType CLOB
public static final SQLColumn.SQLColumnType BOOLEAN
public static final SQLColumn.SQLColumnType SMALLINT
public static final SQLColumn.SQLColumnType INTEGER
public static final SQLColumn.SQLColumnType BIGINT
public static final SQLColumn.SQLColumnType REAL
public static final SQLColumn.SQLColumnType DOUBLE
public static final SQLColumn.SQLColumnType TIMESTAMP
public static final SQLColumn.SQLColumnType DATE
public static final SQLColumn.SQLColumnType TIME
public static final SQLColumn.SQLColumnType BINARY
public static final SQLColumn.SQLColumnType BLOB
public static SQLColumn.SQLColumnType[] values()
for (SQLColumn.SQLColumnType c : SQLColumn.SQLColumnType.values()) System.out.println(c);
public static SQLColumn.SQLColumnType 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 © 2020. All rights reserved.