|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use IDGeneratorMethodEnum | |
---|---|
biz.c24.io.api.data | Data Model super and utility classes. |
Uses of IDGeneratorMethodEnum in biz.c24.io.api.data |
---|
Fields in biz.c24.io.api.data declared as IDGeneratorMethodEnum | |
---|---|
static IDGeneratorMethodEnum |
IDGeneratorMethodEnum.ASSIGNED
lets the application to assign an identifier to the object before save() is called. |
static IDGeneratorMethodEnum |
IDGeneratorMethodEnum.CUSTOM
uses a custom Java class to determine the new keys. |
static IDGeneratorMethodEnum |
IDGeneratorMethodEnum.FOREIGN
uses the identifier of another associated object. |
static IDGeneratorMethodEnum |
IDGeneratorMethodEnum.GUID
uses a database-generated GUID string on MS SQL Server and MySQL. |
static IDGeneratorMethodEnum |
IDGeneratorMethodEnum.HILO
uses a hi/lo algorithm to efficiently generate identifiers of type long, short or int, given a table and column (by default hibernate_unique_key and next_hi respectively) as a source of hi values. |
static IDGeneratorMethodEnum |
IDGeneratorMethodEnum.IDENTITY
supports identity columns in DB2, MySQL, MS SQL Server, Sybase and HypersonicSQL. |
static IDGeneratorMethodEnum |
IDGeneratorMethodEnum.INCREMENT
generates identifiers of type long, short or int that are unique only when no other process is inserting data into the same table. |
static IDGeneratorMethodEnum |
IDGeneratorMethodEnum.NATIVE
picks identity, sequence or hilo depending upon the capabilities of the underlying database. |
static IDGeneratorMethodEnum |
IDGeneratorMethodEnum.SELECT
retrieves a primary key assigned by a database trigger by selecting the row by some unique key and retrieving the primary key value. |
static IDGeneratorMethodEnum |
IDGeneratorMethodEnum.SEQHILO
uses a hi/lo algorithm to efficiently generate identifiers of type long, short or int, given a named database sequence. |
static IDGeneratorMethodEnum |
IDGeneratorMethodEnum.SEQUENCE
uses a sequence in DB2, PostgreSQL, Oracle, SAP DB, McKoi or a generator in Interbase. |
static IDGeneratorMethodEnum |
IDGeneratorMethodEnum.UUID
uses a 128-bit UUID algorithm to generate identifiers of type string, unique within a network (the IP address is used). |
Methods in biz.c24.io.api.data that return IDGeneratorMethodEnum | |
---|---|
IDGeneratorMethodEnum |
ComplexDataType.getIdGenerator()
returns the Hibernate Id generator method to be used. |
IDGeneratorMethodEnum |
DataModel.getIdGeneratorMethodDefault()
Retutns the ID generator default method. |
Methods in biz.c24.io.api.data with parameters of type IDGeneratorMethodEnum | |
---|---|
void |
ComplexDataType.setIdGenerator(IDGeneratorMethodEnum idGenerator)
sets the Hibernate ID generation method to be used. |
void |
DataModel.setIdGeneratorMethodDefault(IDGeneratorMethodEnum generatorMethodDefault)
Sets the ID generator method default. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |