public enum TableType extends Enum<TableType> implements PlasmaEnum
| Enum Constant and Description |
|---|
BASE_TABLE
Holds the logical and physical names for literal BASE_TABLE.
|
SYSTEM_VIEW
Holds the logical and physical names for literal SYSTEM_VIEW.
|
VIEW
Holds the logical and physical names for literal VIEW.
|
| Modifier and Type | Method and Description |
|---|---|
static PlasmaEnum[] |
enumValues()
Returns the enum values for this class as an array of implemented interfaces
|
static TableType |
fromInstanceName(String instanceName)
Returns the enumeration value matching the given physical or instance name.
|
static TableType |
fromName(String name)
Returns the enumeration value matching the given name.
|
String |
getDescription()
Returns the descriptive text associated with this enumeration literal.
|
String |
getInstanceName()
Returns the physical or instance name associated with this enumeration literal.
|
String |
getName()
Returns the logical name associated with this enumeration literal.
|
static TableType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableType SYSTEM_VIEW
public static final TableType BASE_TABLE
public static final TableType VIEW
public static TableType[] values()
for (TableType c : TableType.values()) System.out.println(c);
public static TableType 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 String getName()
getName in interface PlasmaEnumpublic String getInstanceName()
getInstanceName in interface PlasmaEnumpublic String getDescription()
getDescription in interface PlasmaEnumpublic static PlasmaEnum[] enumValues()
PlasmaEnumpublic static TableType fromName(String name)
Copyright © 2017. All rights reserved.