Uses of Class
org.datanucleus.store.rdbms.identifier.IdentifierType
-
Packages that use IdentifierType Package Description org.datanucleus.store.rdbms.adapter Provides mappings of all supported databases to aspects of the database that determines the SQL generation.org.datanucleus.store.rdbms.identifier This package contains a series of classes defining the identifier names of datastore objects, such as tables, foreign keys, indexes, primary keys etc. -
-
Uses of IdentifierType in org.datanucleus.store.rdbms.adapter
Methods in org.datanucleus.store.rdbms.adapter with parameters of type IdentifierType Modifier and Type Method Description int
BaseDatastoreAdapter. getDatastoreIdentifierMaxLength(IdentifierType identifierType)
Method to return the maximum length of a datastore identifier of the specified type.int
DatastoreAdapter. getDatastoreIdentifierMaxLength(IdentifierType identifierType)
Method to return the maximum length of a datastore identifier of the specified type.int
DB2Adapter. getDatastoreIdentifierMaxLength(IdentifierType identifierType)
Method to return the maximum length of a datastore identifier of the specified type.int
DB2AS400Adapter. getDatastoreIdentifierMaxLength(IdentifierType identifierType)
Method to return the maximum length of a datastore identifier of the specified type.int
H2Adapter. getDatastoreIdentifierMaxLength(IdentifierType identifierType)
Method to return the maximum length of a datastore identifier of the specified type.int
HSQLAdapter. getDatastoreIdentifierMaxLength(IdentifierType identifierType)
Method to return the maximum length of a datastore identifier of the specified type. -
Uses of IdentifierType in org.datanucleus.store.rdbms.identifier
Methods in org.datanucleus.store.rdbms.identifier that return IdentifierType Modifier and Type Method Description static IdentifierType
IdentifierType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IdentifierType[]
IdentifierType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.datanucleus.store.rdbms.identifier with parameters of type IdentifierType Modifier and Type Method Description DatastoreIdentifier
AbstractIdentifierFactory. newIdentifier(IdentifierType identifierType, java.lang.String name)
Method to generate an identifier based on the supplied name for the requested type of identifier.DatastoreIdentifier
IdentifierFactory. newIdentifier(IdentifierType identifierType, java.lang.String identifierName)
To be called when we want an identifier name creating based on the identifier.
-