public static enum TypeMapper.Type extends java.lang.Enum<TypeMapper.Type>
| Enum Constant and Description |
|---|
BIGINT |
BLOB |
BOOLEAN |
CLOB |
DOUBLE |
INTEGER |
LONG |
REAL |
TIMESTAMP |
VARCHAR |
| Modifier and Type | Method and Description |
|---|---|
static TypeMapper.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TypeMapper.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypeMapper.Type INTEGER
public static final TypeMapper.Type VARCHAR
public static final TypeMapper.Type BOOLEAN
public static final TypeMapper.Type BIGINT
public static final TypeMapper.Type REAL
public static final TypeMapper.Type TIMESTAMP
public static final TypeMapper.Type CLOB
public static final TypeMapper.Type BLOB
public static final TypeMapper.Type LONG
public static final TypeMapper.Type DOUBLE
public static TypeMapper.Type[] values()
for (TypeMapper.Type c : TypeMapper.Type.values()) System.out.println(c);
public static TypeMapper.Type 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 null