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