public enum KeyGeneratorType extends Enum<KeyGeneratorType>
| Enum Constant and Description |
|---|
NONE
no generated key
|
SELECT_KEY_AFTER
select key after
|
SELECT_KEY_BEFORE
select key before
|
SIMPLE_RETURN
simple returned generated value
|
| Modifier and Type | Method and Description |
|---|---|
static KeyGeneratorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KeyGeneratorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyGeneratorType NONE
public static final KeyGeneratorType SIMPLE_RETURN
public static final KeyGeneratorType SELECT_KEY_BEFORE
public static final KeyGeneratorType SELECT_KEY_AFTER
public static KeyGeneratorType[] values()
for (KeyGeneratorType c : KeyGeneratorType.values()) System.out.println(c);
public static KeyGeneratorType 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 © 2022. All rights reserved.