public enum DBDataType extends java.lang.Enum<DBDataType>
| Enum Constant and Description |
|---|
bool |
clob |
date |
datetime |
integer |
object |
text |
time |
| Modifier and Type | Method and Description |
|---|---|
static DBDataType |
getDBDataType(java.lang.Object objectField) |
static DBDataType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DBDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DBDataType bool
public static final DBDataType clob
public static final DBDataType date
public static final DBDataType datetime
public static final DBDataType time
public static final DBDataType integer
public static final DBDataType object
public static final DBDataType text
public static DBDataType[] values()
for (DBDataType c : DBDataType.values()) System.out.println(c);
public static DBDataType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static DBDataType getDBDataType(java.lang.Object objectField)