Uses of Enum Class
org.apache.torque.adapter.IDMethod
Packages that use IDMethod
Package
Description
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".
-
Uses of IDMethod in org.apache.torque
Methods in org.apache.torque with parameters of type IDMethodModifier and TypeMethodDescriptionvoidDatabase.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. -
Uses of IDMethod in org.apache.torque.adapter
Methods in org.apache.torque.adapter that return IDMethodModifier and TypeMethodDescriptionstatic IDMethodIDMethod.getIdMethod(String idMethod) Returns the id method for a id method name.abstract IDMethodAbstractAdapter.getIDMethodType()Returns the constant from theIDMethodinterface denoting which type of primary key generation method this type of RDBMS uses.Adapter.getIDMethodType()Returns the constant from theIDMethodinterface 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 IDMethodReturns the enum constant of this class with the specified name.static IDMethod[]IDMethod.values()Returns an array containing the constants of this enum class, in the order they are declared. -
Uses of IDMethod in org.apache.torque.map
Methods in org.apache.torque.map that return IDMethodModifier and TypeMethodDescriptionTableMap.getPrimaryKeyMethod()Get the method used to generate primary keys for this table.Methods in org.apache.torque.map with parameters of type IDMethodModifier and TypeMethodDescriptionTableMap.getPrimaryKeyMethodInfo(IDMethod idMethod) Get the information used to generate a primary keyvoidTableMap.setPrimaryKeyMethod(IDMethod method) Sets the method used to generate a key for this table.voidTableMap.setPrimaryKeyMethodInfo(IDMethod idMethod, Object pkInfo) Sets the pk information needed to generate a key. -
Uses of IDMethod in org.apache.torque.oid
Fields in org.apache.torque.oid with type parameters of type IDMethodModifier and TypeFieldDescriptionIDGeneratorFactory.ID_GENERATOR_METHODSThe list of ID generation method types which have associatedIdGeneratorimplementations.