public static enum DbType.TYPE extends Enum<DbType.TYPE>
| Enum Constant and Description |
|---|
BIGDECIMAL |
BLOB |
BOOL |
DATETIME |
DOUBLE |
FLOAT |
INT |
LONG |
STRING |
UNKNOWN |
UUID |
| Modifier and Type | Method and Description |
|---|---|
static DbType.TYPE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DbType.TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DbType.TYPE INT
public static final DbType.TYPE LONG
public static final DbType.TYPE BOOL
public static final DbType.TYPE DOUBLE
public static final DbType.TYPE FLOAT
public static final DbType.TYPE STRING
public static final DbType.TYPE DATETIME
public static final DbType.TYPE UUID
public static final DbType.TYPE BLOB
public static final DbType.TYPE UNKNOWN
public static final DbType.TYPE BIGDECIMAL
public static DbType.TYPE[] values()
for (DbType.TYPE c : DbType.TYPE.values()) System.out.println(c);
public static DbType.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 © 2019. All rights reserved.