public static enum Table.TableType extends java.lang.Enum<Table.TableType>
AbstractBuildableObject.getProperties() etc ) under the Table.TABLE_TYPE_KEY.| Enum Constant and Description |
|---|
EXTERNAL |
INDEX_ORGANIZED |
NORMAL |
SESSION_TEMP |
TRANSACTION_TEMP |
| Modifier and Type | Method and Description |
|---|---|
static Table.TableType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Table.TableType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final Table.TableType NORMAL
public static final Table.TableType TRANSACTION_TEMP
public static final Table.TableType SESSION_TEMP
public static final Table.TableType INDEX_ORGANIZED
public static final Table.TableType EXTERNAL
public static Table.TableType[] values()
for (Table.TableType c : Table.TableType.values())
System.out.println(c);
public static Table.TableType 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