public enum InputErrorResetPolicy extends java.lang.Enum<InputErrorResetPolicy>
Enum Constant and Description |
---|
RESET_ALWAYS
The RESET_ALWAYS policy is used to indicate the state of the ParameterSet should be reset when
any input errors occur processing an appserver request.
|
RESET_MODIFIED
The RESET_MODIFIED policy option causes the ParameterSet to skip the parameter reset when an AppServer requests results in an error, but only
if that error leaves the ParameterSet unmodified from its original state.
|
Modifier and Type | Method and Description |
---|---|
static InputErrorResetPolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InputErrorResetPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InputErrorResetPolicy RESET_ALWAYS
public static final InputErrorResetPolicy RESET_MODIFIED
public static InputErrorResetPolicy[] values()
for (InputErrorResetPolicy c : InputErrorResetPolicy.values()) System.out.println(c);
public static InputErrorResetPolicy 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 null