public enum PlaceholderPurpose extends Enum<PlaceholderPurpose>
| Enum Constant and Description |
|---|
GENERIC |
INSERT_VALUES |
LIMIT_AND_OFFSET |
| Modifier and Type | Method and Description |
|---|---|
static PlaceholderPurpose |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PlaceholderPurpose[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlaceholderPurpose GENERIC
public static final PlaceholderPurpose INSERT_VALUES
public static final PlaceholderPurpose LIMIT_AND_OFFSET
public static PlaceholderPurpose[] values()
for (PlaceholderPurpose c : PlaceholderPurpose.values()) System.out.println(c);
public static PlaceholderPurpose 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 null