public static enum Table.TemporaryType extends Enum<Table.TemporaryType>
Enum Constant and Description |
---|
GLOBAL
A globally-scoped temporary table.
|
LOCAL
A locally-scoped temporary table.
|
Modifier and Type | Method and Description |
---|---|
static Table.TemporaryType |
fromValue(String value) |
static Table.TemporaryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Table.TemporaryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Table.TemporaryType GLOBAL
public static final Table.TemporaryType LOCAL
public static Table.TemporaryType[] values()
for (Table.TemporaryType c : Table.TemporaryType.values()) System.out.println(c);
public static Table.TemporaryType 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 nullpublic static Table.TemporaryType fromValue(String value)
value
- the value whose TemporaryType
is being requested (can be empty)TemporaryType
or null
if not foundCopyright © 2013–2019. All rights reserved.