Verwendungen von Enum
org.apache.torque.adapter.IDMethod
Packages, die IDMethod verwenden
Package
Beschreibung
Torque is an object-relational mapper for Java.
Adapters between Torque and various databases.
Description of the schema layout.
The ID broker, an API to provide persistent
object identifiers,
as described by Scott Ambler's paper on "Enterprise-Ready Object
IDs".
-
Verwendungen von IDMethod in org.apache.torque
Methoden in org.apache.torque mit Parametern vom Typ IDMethodModifizierer und TypMethodeBeschreibungvoid
Database.addIdGenerator
(IDMethod type, IdGenerator idGen) Adds an IdGenerator to the database.Database.getIdGenerator
(IDMethod type) Returns the IdGenerator of the given type for this Database. -
Verwendungen von IDMethod in org.apache.torque.adapter
Methoden in org.apache.torque.adapter, die IDMethod zurückgebenModifizierer und TypMethodeBeschreibungstatic IDMethod
IDMethod.getIdMethod
(String idMethod) Returns the id method for a id method name.abstract IDMethod
AbstractAdapter.getIDMethodType()
Returns the constant from theIDMethod
interface denoting which type of primary key generation method this type of RDBMS uses.Adapter.getIDMethodType()
Returns the constant from theIDMethod
interface denoting which type of primary key generation method this type of RDBMS uses.DerbyAdapter.getIDMethodType()
HsqldbAdapter.getIDMethodType()
MssqlAdapter.getIDMethodType()
MysqlAdapter.getIDMethodType()
NoneAdapter.getIDMethodType()
OracleAdapter.getIDMethodType()
PostgresAdapter.getIDMethodType()
static IDMethod
Gibt die Enumerationskonstante dieses Typs mit dem angegebenen Namen zurück.static IDMethod[]
IDMethod.values()
Gibt ein Array mit den Konstanten dieses Enum-Typs in der Reihenfolge ihrer Deklaration zurück. -
Verwendungen von IDMethod in org.apache.torque.map
Methoden in org.apache.torque.map, die IDMethod zurückgebenModifizierer und TypMethodeBeschreibungTableMap.getPrimaryKeyMethod()
Get the method used to generate primary keys for this table.Methoden in org.apache.torque.map mit Parametern vom Typ IDMethodModifizierer und TypMethodeBeschreibungTableMap.getPrimaryKeyMethodInfo
(IDMethod idMethod) Get the information used to generate a primary keyvoid
TableMap.setPrimaryKeyMethod
(IDMethod method) Sets the method used to generate a key for this table.void
TableMap.setPrimaryKeyMethodInfo
(IDMethod idMethod, Object pkInfo) Sets the pk information needed to generate a key. -
Verwendungen von IDMethod in org.apache.torque.oid
Felder in org.apache.torque.oid mit Typparametern vom Typ IDMethodModifizierer und TypFeldBeschreibungIDGeneratorFactory.ID_GENERATOR_METHODS
The list of ID generation method types which have associatedIdGenerator
implementations.