public static enum MyRoleMessageExchange.CorrelationStatus extends java.lang.Enum<MyRoleMessageExchange.CorrelationStatus>
| Enum Constant and Description |
|---|
CREATE_INSTANCE
The request resulted in the creation of a new instance.
|
MATCHED
The request was matched to an existing instance.fail
|
QUEUED
The request did not match an existing instance and was queued.
|
UKNOWN_ENDPOINT
The EPR is not associated with a process.
|
| Modifier and Type | Method and Description |
|---|---|
static MyRoleMessageExchange.CorrelationStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MyRoleMessageExchange.CorrelationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MyRoleMessageExchange.CorrelationStatus UKNOWN_ENDPOINT
public static final MyRoleMessageExchange.CorrelationStatus CREATE_INSTANCE
public static final MyRoleMessageExchange.CorrelationStatus MATCHED
public static final MyRoleMessageExchange.CorrelationStatus QUEUED
public static MyRoleMessageExchange.CorrelationStatus[] values()
for (MyRoleMessageExchange.CorrelationStatus c : MyRoleMessageExchange.CorrelationStatus.values()) System.out.println(c);
public static MyRoleMessageExchange.CorrelationStatus 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