public static enum TableDescription.StorageType extends Enum<TableDescription.StorageType>
| Modifier and Type | Method and Description |
|---|---|
static TableDescription.StorageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableDescription.StorageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableDescription.StorageType TEMP
public static final TableDescription.StorageType PERSIST
public static final TableDescription.StorageType CACHED
public static TableDescription.StorageType[] values()
for (TableDescription.StorageType c : TableDescription.StorageType.values()) System.out.println(c);
public static TableDescription.StorageType 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 © 2019. All rights reserved.