public static enum DBTable.TableType extends java.lang.Enum<DBTable.TableType>
Enum Constant and Description |
---|
SYNONYM
Synonym is alternate name given to table, view, sequence or program unit.
|
TABLE
Table is a unit of data storage, which holds all user accessible data.
|
VIEW
View is a logical representation of another table or combination of tables.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getActualName() |
java.lang.String |
toString() |
static DBTable.TableType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DBTable.TableType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DBTable.TableType TABLE
public static final DBTable.TableType VIEW
public static final DBTable.TableType SYNONYM
public static DBTable.TableType[] values()
for (DBTable.TableType c : DBTable.TableType.values()) System.out.println(c);
public static DBTable.TableType 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<DBTable.TableType>
public java.lang.String getActualName()