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