Uses of Enum
org.apache.openjpa.jdbc.identifier.DBIdentifier.DBIdentifierType
Packages that use DBIdentifier.DBIdentifierType
Package
Description
OpenJPA-JDBC SQL Abstraction
-
Uses of DBIdentifier.DBIdentifierType in org.apache.openjpa.jdbc.identifier
Methods in org.apache.openjpa.jdbc.identifier that return DBIdentifier.DBIdentifierTypeModifier and TypeMethodDescriptionDBIdentifier.getType()
Get the identifier typeReturns the enum constant of this type with the specified name.static DBIdentifier.DBIdentifierType[]
DBIdentifier.DBIdentifierType.values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.openjpa.jdbc.identifier with parameters of type DBIdentifier.DBIdentifierTypeModifier and TypeMethodDescriptionDBIdentifierUtil.append
(DBIdentifier.DBIdentifierType resultId, DBIdentifier... names) Appends multiple names together using the appropriate name delimiter.DBIdentifierUtilImpl.append
(DBIdentifier.DBIdentifierType resultId, DBIdentifier... names) static DBIdentifier
DBIdentifier.combine
(DBIdentifier.DBIdentifierType id, String... names) Combines an array of names names using standard combining rules and returns an identifier of the specified type.DBIdentifierUtil.fromDBName
(String name, DBIdentifier.DBIdentifierType id) Converts the name returned by the database to an identifier of the specified type.DBIdentifierUtilImpl.fromDBName
(String name, DBIdentifier.DBIdentifierType id) Creates a new identifier of a given type based upon the name returned from the database.protected static DBIdentifier
DBIdentifier.newIdentifier
(String name, DBIdentifier.DBIdentifierType id) Constructs a new identifier with the provided name and typestatic DBIdentifier
DBIdentifier.newIdentifier
(String name, DBIdentifier.DBIdentifierType id, boolean toUpper) Constructs a new identifier with the provided name an type.protected static DBIdentifier
DBIdentifier.newIdentifier
(String name, DBIdentifier.DBIdentifierType id, boolean toUpper, boolean delimit) Constructs a new identifier (potentially a compound QualifiedDBIdentifier) with the provided name an type.protected static DBIdentifier
DBIdentifier.newIdentifier
(String name, DBIdentifier.DBIdentifierType id, boolean toUpper, boolean delimit, boolean ignoreCase) Constructs a new identifier (potentially a compound QualifiedDBIdentifier) with the provided name an type.protected void
DBIdentifier.setType
(DBIdentifier.DBIdentifierType type) Set the type of the identifierstatic DBIdentifier[]
DBIdentifier.split
(String name, DBIdentifier.DBIdentifierType id, String delim) Splits a string delimited by the specified delimiter of a given name type into an array of DBIdentifier objects.static DBIdentifier[]
DBIdentifier.split
(DBIdentifier.DBIdentifierType resultType, String name) Splits a given DBIdentifier into multiple DBIdentifiers.static DBIdentifier[]
DBIdentifier.toArray
(String[] columnNames, DBIdentifier.DBIdentifierType id) Converts the provided set of names to an array of identifiers of the provided typestatic DBIdentifier[]
DBIdentifier.toArray
(String[] names, DBIdentifier.DBIdentifierType id, boolean delimit) Converts the provided set of names to an array of identifiers of the provided type, optionally delimiting the names.Constructors in org.apache.openjpa.jdbc.identifier with parameters of type DBIdentifier.DBIdentifierTypeModifierConstructorDescriptionprotected
DBIdentifier
(String name, DBIdentifier.DBIdentifierType type) protected
DBIdentifier
(String name, DBIdentifier.DBIdentifierType type, boolean delimit) DBIdentifierRule
(DBIdentifier.DBIdentifierType id, Set<String> reservedWords) -
Uses of DBIdentifier.DBIdentifierType in org.apache.openjpa.jdbc.sql
Methods in org.apache.openjpa.jdbc.sql with parameters of type DBIdentifier.DBIdentifierTypeModifier and TypeMethodDescriptionDBDictionary.fromDBName
(String name, DBIdentifier.DBIdentifierType id)