|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<IdType>
com.avaje.ebean.config.dbplatform.IdType
public enum IdType
The types of Identity generation that can be defined.
| Enum Constant Summary | |
|---|---|
GENERATOR
Use an IdGenerator to generate the identity (prior to insert). |
|
IDENTITY
Use a Database Identity (autoincrement) to generate the identity. |
|
SEQUENCE
Use a Database sequence to generate the identity. |
|
| Method Summary | |
|---|---|
static IdType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static IdType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final IdType IDENTITY
public static final IdType SEQUENCE
Note: Some databases support getGeneratedKeys with sequences and this then does not involve an extra statement to return the id.
public static final IdType GENERATOR
Note: There is a IdGenerator for UUID's and it is automatically assigned to id properties of type UUID.
| Method Detail |
|---|
public static IdType[] values()
for (IdType c : IdType.values()) System.out.println(c);
public static IdType valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||