public enum DbColumnType extends Enum<DbColumnType>
Enum Constant and Description |
---|
BLOB
The blob type.
|
BOOLEAN
The boolean type.
|
CLOB
The clob type
|
DOUBLE
The double type.
|
INT
The integer type.
|
LONG
The long type.
|
STRING
The string type.
|
UNMAPPED
A type that is not mapped.
|
Modifier and Type | Method and Description |
---|---|
static DbColumnType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DbColumnType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DbColumnType BOOLEAN
public static final DbColumnType STRING
public static final DbColumnType INT
public static final DbColumnType DOUBLE
public static final DbColumnType LONG
public static final DbColumnType BLOB
public static final DbColumnType CLOB
public static final DbColumnType UNMAPPED
public static DbColumnType[] values()
for (DbColumnType c : DbColumnType.values()) System.out.println(c);
public static DbColumnType 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 © 2014 Feedzai. All Rights Reserved.