|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||
java.lang.Objectjava.lang.Enum<MarkerType>
org.curjent.agent.MarkerType
public enum MarkerType
Type of Marker. TRAILING for Marker,
LEADING for Leading, and ISOLATED
Isolated. null is used for non-marker calls.
| Enum Constant Summary | |
|---|---|
ISOLATED
Marker type for Isolated. |
|
LEADING
Marker type for Leading. |
|
TRAILING
Marker type for Marker. |
|
| Method Summary | |
|---|---|
static MarkerType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static MarkerType[] |
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 MarkerType TRAILING
Marker.
public static final MarkerType LEADING
Leading.
public static final MarkerType ISOLATED
Isolated.
| Method Detail |
|---|
public static MarkerType[] values()
for (MarkerType c : MarkerType.values()) System.out.println(c);
public static MarkerType 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 | |||||||