public static enum CorrelationIdentifier.Scope extends Enum<CorrelationIdentifier.Scope>
| Enum Constant and Description |
|---|
CausedBy
This scope is used to reference a node within another fragment.
|
ControlFlow
This scope means the identifier is a unique value shared between
one source node and potentially zero or more target nodes.
|
Interaction
This scope means the identifier's value is unique and shared between
a source (Producer) and zero or more target (Consumer) nodes.
|
| Modifier and Type | Method and Description |
|---|---|
static CorrelationIdentifier.Scope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CorrelationIdentifier.Scope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CorrelationIdentifier.Scope Interaction
public static final CorrelationIdentifier.Scope ControlFlow
public static final CorrelationIdentifier.Scope CausedBy
public static CorrelationIdentifier.Scope[] values()
for (CorrelationIdentifier.Scope c : CorrelationIdentifier.Scope.values()) System.out.println(c);
public static CorrelationIdentifier.Scope valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2015–2016 Red Hat, Inc.. All rights reserved.