org.apache.openjpa.jdbc.sql
Enum DBDictionary.DBIdentifiers
java.lang.Object
java.lang.Enum<DBDictionary.DBIdentifiers>
org.apache.openjpa.jdbc.sql.DBDictionary.DBIdentifiers
- All Implemented Interfaces:
- Serializable, Comparable<DBDictionary.DBIdentifiers>
- Enclosing class:
- DBDictionary
public static enum DBDictionary.DBIdentifiers
- extends Enum<DBDictionary.DBIdentifiers>
TABLE_NAME
public static final DBDictionary.DBIdentifiers TABLE_NAME
TABLE_SCHEMA
public static final DBDictionary.DBIdentifiers TABLE_SCHEMA
TABLE_CATALOG
public static final DBDictionary.DBIdentifiers TABLE_CATALOG
SECONDARY_TABLE_NAME
public static final DBDictionary.DBIdentifiers SECONDARY_TABLE_NAME
SECONDARY_TABLE_SCHEMA
public static final DBDictionary.DBIdentifiers SECONDARY_TABLE_SCHEMA
SECONDARY_TABLE_CATALOG
public static final DBDictionary.DBIdentifiers SECONDARY_TABLE_CATALOG
TABLE_GEN_TABLE
public static final DBDictionary.DBIdentifiers TABLE_GEN_TABLE
TABLE_GEN_SCHEMA
public static final DBDictionary.DBIdentifiers TABLE_GEN_SCHEMA
TABLE_GEN_PK_COLUMN
public static final DBDictionary.DBIdentifiers TABLE_GEN_PK_COLUMN
TABLE_GEN_VALUE_COLUMN
public static final DBDictionary.DBIdentifiers TABLE_GEN_VALUE_COLUMN
COLUMN_NAME
public static final DBDictionary.DBIdentifiers COLUMN_NAME
COLUMN_COLUMN_DEFINITION
public static final DBDictionary.DBIdentifiers COLUMN_COLUMN_DEFINITION
COLUMN_TABLE
public static final DBDictionary.DBIdentifiers COLUMN_TABLE
values
public static DBDictionary.DBIdentifiers[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (DBDictionary.DBIdentifiers c : DBDictionary.DBIdentifiers.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static DBDictionary.DBIdentifiers valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
Copyright © 2006-2009 Apache Software Foundation. All Rights Reserved.