public static enum Table.Type extends Enum<Table.Type>
| Enum Constant and Description |
|---|
ALIAS |
GLOBAL_TEMPORARY |
LOCAL_TEMPORARY |
SYNONYM |
SYSTEM_TABLE |
TABLE |
VIEW |
| Modifier and Type | Method and Description |
|---|---|
static Table.Type |
fromValue(String type) |
static Table.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Table.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Table.Type TABLE
public static final Table.Type VIEW
public static final Table.Type SYSTEM_TABLE
public static final Table.Type GLOBAL_TEMPORARY
public static final Table.Type LOCAL_TEMPORARY
public static final Table.Type ALIAS
public static final Table.Type SYNONYM
public static Table.Type[] values()
for (Table.Type c : Table.Type.values()) System.out.println(c);
public static Table.Type 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.Type fromValue(String type)
Copyright © 2011-2013. All Rights Reserved.