public static enum CmpField.ColumnType extends java.lang.Enum<CmpField.ColumnType>
Enum Constant and Description |
---|
BLOB |
CLOB |
LONG_STRING |
SYBASE_BINARY |
UNSPECIFIED |
Modifier and Type | Method and Description |
---|---|
static CmpField.ColumnType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CmpField.ColumnType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CmpField.ColumnType UNSPECIFIED
public static final CmpField.ColumnType CLOB
public static final CmpField.ColumnType BLOB
public static final CmpField.ColumnType LONG_STRING
public static final CmpField.ColumnType SYBASE_BINARY
public static CmpField.ColumnType[] values()
for (CmpField.ColumnType c : CmpField.ColumnType.values()) System.out.println(c);
public static CmpField.ColumnType 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