public enum SqlNameType extends Enum<SqlNameType>
| Enum Constant and Description |
|---|
COLUMN_NAME
name of a column.
|
INDEX_NAME
name of an index.
|
TABLE_ALIAS
name of a table alias.
|
TABLE_NAME
name of a table.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static SqlNameType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlNameType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlNameType TABLE_NAME
public static final SqlNameType TABLE_ALIAS
public static final SqlNameType COLUMN_NAME
public static final SqlNameType INDEX_NAME
public static SqlNameType[] values()
for (SqlNameType c : SqlNameType.values()) System.out.println(c);
public static SqlNameType 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 toString()
toString in class Enum<SqlNameType>Tentackle - distributed, domain- and model-driven