public static enum Modifiers.Reaction extends Enum<Modifiers.Reaction>
Modifiers
.Enum Constant and Description |
---|
reject
Cause an error message, thus terminating the processing of the data.
|
silentlyAllow
Let the case pass without any reaction.
|
warn
Cause a warning message.
|
Modifier and Type | Method and Description |
---|---|
static Modifiers.Reaction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Modifiers.Reaction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Modifiers.Reaction silentlyAllow
public static final Modifiers.Reaction warn
public static final Modifiers.Reaction reject
public static Modifiers.Reaction[] values()
for (Modifiers.Reaction c : Modifiers.Reaction.values()) System.out.println(c);
public static Modifiers.Reaction 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