public static enum EntityConverter.ColumnType extends java.lang.Enum<EntityConverter.ColumnType>
| Enum Constant and Description |
|---|
BLOB |
INTEGER |
JOIN
A surrogate type for columns that are only read, but never written.
|
REAL |
TEXT |
| Modifier and Type | Method and Description |
|---|---|
static EntityConverter.ColumnType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EntityConverter.ColumnType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EntityConverter.ColumnType TEXT
public static final EntityConverter.ColumnType INTEGER
public static final EntityConverter.ColumnType REAL
public static final EntityConverter.ColumnType BLOB
public static final EntityConverter.ColumnType JOIN
public static EntityConverter.ColumnType[] values()
for (EntityConverter.ColumnType c : EntityConverter.ColumnType.values()) System.out.println(c);
public static EntityConverter.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