public enum DOFMarshalContext extends java.lang.Enum<DOFMarshalContext>
Enum Constant and Description |
---|
COMMAND
The COMMAND context indicates that the data should be formatted for or is formatted as a command.
|
NONE
The NONE context signifies that the context is unimportant.
|
RESPONSE
The RESPONSE context indicates that the data should be formatted for or is formatted as a response.
|
STORE
The STORE context indicates that the data should be formatted for or is formatted as a complete object.
|
Modifier and Type | Method and Description |
---|---|
static DOFMarshalContext |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DOFMarshalContext[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DOFMarshalContext COMMAND
public static final DOFMarshalContext RESPONSE
public static final DOFMarshalContext STORE
public static final DOFMarshalContext NONE
public static DOFMarshalContext[] values()
for (DOFMarshalContext c : DOFMarshalContext.values()) System.out.println(c);
public static DOFMarshalContext 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