|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<MessageCorrelationResultType>
org.camunda.bpm.engine.runtime.MessageCorrelationResultType
public enum MessageCorrelationResultType
The message correlation result type indicates which type of message correlation result is returned after a message correlation. A message may be correlated to either a waiting execution (BPMN receive message event) or a process definition (BPMN message start event). The result type indicates which correlation was performed.
| Enum Constant Summary | |
|---|---|
Execution
signifies a message correlated to an execution |
|
ProcessDefinition
signifies a message correlated to a process definition |
|
| Method Summary | |
|---|---|
static MessageCorrelationResultType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static MessageCorrelationResultType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final MessageCorrelationResultType Execution
public static final MessageCorrelationResultType ProcessDefinition
| Method Detail |
|---|
public static MessageCorrelationResultType[] values()
for (MessageCorrelationResultType c : MessageCorrelationResultType.values()) System.out.println(c);
public static MessageCorrelationResultType valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||