public static enum Context.Type extends Enum<Context.Type>
Enum Constant and Description |
---|
Conversation
A 'conversation id' represents a value that can be used to correlate
activities across distributed services.
|
Endpoint
The 'endpoint id' type represents an id that may be associated
with the executable unit enacting the service/process being monitored,
and can therefore be used to correlate local activities as being
part of the same executable unit.
|
Link
This context type represents an association between two or more activities
that will usually be constrained to a specified timeframe.
|
Message
This context type represents an id associated with a particular message
being exchanged between distributed participants.
|
Modifier and Type | Method and Description |
---|---|
static Context.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Context.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Context.Type Conversation
public static final Context.Type Endpoint
public static final Context.Type Message
public static final Context.Type Link
public static Context.Type[] values()
for (Context.Type c : Context.Type.values()) System.out.println(c);
public static Context.Type 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 © 2013-2015 JBoss by Red Hat. All Rights Reserved.