org.curjent.agent
Enum MarkerType

java.lang.Object
  extended by java.lang.Enum<MarkerType>
      extended by org.curjent.agent.MarkerType
All Implemented Interfaces:
Serializable, Comparable<MarkerType>

public enum MarkerType
extends 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

TRAILING

public static final MarkerType TRAILING
Marker type for Marker.


LEADING

public static final MarkerType LEADING
Marker type for Leading.


ISOLATED

public static final MarkerType ISOLATED
Marker type for Isolated.

Method Detail

values

public static MarkerType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (MarkerType c : MarkerType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static MarkerType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright 2009-2011 Tom Landon
Apache License 2.0