Class DefaultIdentifierConfiguration
java.lang.Object
org.apache.openjpa.jdbc.identifier.DefaultIdentifierConfiguration
- All Implemented Interfaces:
IdentifierConfiguration
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns true if global name delimiting is enabled.Returns a key that can be used to determine whether conversion should take place.Gets the default naming ruleReturns the case that is used when delimiting.Returns the value used to concatenate multiple names together.Returns the value used to delimit between individual names.<T> IdentifierRule
getIdentifierRule
(T t) Returns a naming rule or null if the rule is not found.Returns all naming rulesReturns the leading delimiter value to use when delimiting a name.Returns the case that is used when delimiters are not used.boolean
Returns true if delimiting is supportedReturns the trailing delimiter value to use when delimiting a name.
-
Constructor Details
-
DefaultIdentifierConfiguration
public DefaultIdentifierConfiguration()
-
-
Method Details
-
delimitAll
public boolean delimitAll()Description copied from interface:IdentifierConfiguration
Returns true if global name delimiting is enabled.- Specified by:
delimitAll
in interfaceIdentifierConfiguration
-
getDefaultIdentifierRule
Description copied from interface:IdentifierConfiguration
Gets the default naming rule- Specified by:
getDefaultIdentifierRule
in interfaceIdentifierConfiguration
-
getDelimitedCase
Description copied from interface:IdentifierConfiguration
Returns the case that is used when delimiting.- Specified by:
getDelimitedCase
in interfaceIdentifierConfiguration
- Returns:
- upper, lower, or preserve
-
getSchemaCase
Description copied from interface:IdentifierConfiguration
Returns the case that is used when delimiters are not used.- Specified by:
getSchemaCase
in interfaceIdentifierConfiguration
- Returns:
- upper, lower, or preserve
-
getLeadingDelimiter
Description copied from interface:IdentifierConfiguration
Returns the leading delimiter value to use when delimiting a name.- Specified by:
getLeadingDelimiter
in interfaceIdentifierConfiguration
-
getIdentifierDelimiter
Description copied from interface:IdentifierConfiguration
Returns the value used to delimit between individual names. For example: "." used in MYSCHEMA.MYTABLE- Specified by:
getIdentifierDelimiter
in interfaceIdentifierConfiguration
-
getIdentifierConcatenator
Description copied from interface:IdentifierConfiguration
Returns the value used to concatenate multiple names together. For example: "_" used in TABLE1_TABLE2- Specified by:
getIdentifierConcatenator
in interfaceIdentifierConfiguration
-
getIdentifierRule
Description copied from interface:IdentifierConfiguration
Returns a naming rule or null if the rule is not found.- Specified by:
getIdentifierRule
in interfaceIdentifierConfiguration
-
getIdentifierRules
Description copied from interface:IdentifierConfiguration
Returns all naming rules- Specified by:
getIdentifierRules
in interfaceIdentifierConfiguration
-
getTrailingDelimiter
Description copied from interface:IdentifierConfiguration
Returns the trailing delimiter value to use when delimiting a name.- Specified by:
getTrailingDelimiter
in interfaceIdentifierConfiguration
-
getSupportsDelimitedIdentifiers
public boolean getSupportsDelimitedIdentifiers()Description copied from interface:IdentifierConfiguration
Returns true if delimiting is supported- Specified by:
getSupportsDelimitedIdentifiers
in interfaceIdentifierConfiguration
-
getConversionKey
Description copied from interface:IdentifierConfiguration
Returns a key that can be used to determine whether conversion should take place. Id configurations should create a key unique to their configuration. The typical key is: leading delimiter (") + name separator(.) + trailing delimiter(")- Specified by:
getConversionKey
in interfaceIdentifierConfiguration
-