public static enum CorrelationIdentifier.Scope extends Enum<CorrelationIdentifier.Scope>
| Enum Constant and Description |
|---|
Interaction
The 'Interaction' scope means the identifier is only unique in relation
to a specific exchange between two (or more) participants.
|
| 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 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.