public static enum Dialect.DialectIdType extends Enum<Dialect.DialectIdType>
Enum Constant and Description |
---|
SEQUENCE
Long from sequence generated by database.
|
UUID
Native UUID.
|
VARCHAR
VARCHAR storing a UUID as a string.
|
Modifier and Type | Method and Description |
---|---|
static Dialect.DialectIdType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Dialect.DialectIdType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Dialect.DialectIdType VARCHAR
public static final Dialect.DialectIdType UUID
public static final Dialect.DialectIdType SEQUENCE
public static Dialect.DialectIdType[] values()
for (Dialect.DialectIdType c : Dialect.DialectIdType.values()) System.out.println(c);
public static Dialect.DialectIdType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2015 Nuxeo SA. All rights reserved.