public static enum DOFOperation.ResponseLevel extends java.lang.Enum<DOFOperation.ResponseLevel>
Enum Constant and Description |
---|
ALL
All responses should be returned (currently this has the same effect as EXCEPTION -- future implementations may include additional "non-final exceptions" at this level).
|
EXCEPTION
Specifies that successful results and exceptions should be returned.
|
NONE
Specifies that no responses should be returned (execute the request, but do not respond).
|
SUCCESS
Specifies that only successful results should be returned (ignore all exceptions).
|
Modifier and Type | Method and Description |
---|---|
static DOFOperation.ResponseLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DOFOperation.ResponseLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DOFOperation.ResponseLevel NONE
public static final DOFOperation.ResponseLevel SUCCESS
public static final DOFOperation.ResponseLevel EXCEPTION
public static final DOFOperation.ResponseLevel ALL
public static DOFOperation.ResponseLevel[] values()
for (DOFOperation.ResponseLevel c : DOFOperation.ResponseLevel.values()) System.out.println(c);
public static DOFOperation.ResponseLevel 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