public static enum SMTable.SMTableType extends java.lang.Enum<SMTable.SMTableType>
Enum Constant and Description |
---|
SYNONYM
SYNONYM specifies the table which is created is of a SYNONYM type.
|
TABLE
TABLE specifies the table which is created is of a TABLE type.
|
VIEW
VIEW specifies the table which is created is of a VIEW type.
|
Modifier and Type | Method and Description |
---|---|
static SMTable.SMTableType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SMTable.SMTableType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SMTable.SMTableType TABLE
public static final SMTable.SMTableType VIEW
public static final SMTable.SMTableType SYNONYM
public static SMTable.SMTableType[] values()
for (SMTable.SMTableType c : SMTable.SMTableType.values()) System.out.println(c);
public static SMTable.SMTableType 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