public enum PrepareSupportDefaultBehavior extends java.lang.Enum<PrepareSupportDefaultBehavior>
Since version 3.16.0
Enum Constant and Description |
---|
Identifier
The client's default behavior is to select the identifier
according to the language's syntax rule.
|
Modifier and Type | Method and Description |
---|---|
static PrepareSupportDefaultBehavior |
forValue(int value) |
int |
getValue() |
static PrepareSupportDefaultBehavior |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PrepareSupportDefaultBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrepareSupportDefaultBehavior Identifier
public static PrepareSupportDefaultBehavior[] values()
for (PrepareSupportDefaultBehavior c : PrepareSupportDefaultBehavior.values()) System.out.println(c);
public static PrepareSupportDefaultBehavior valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int getValue()
public static PrepareSupportDefaultBehavior forValue(int value)