Kieker 1.2

kieker.monitoring.core
Enum MonitoringController.ControllerMode

java.lang.Object
  extended by java.lang.Enum<MonitoringController.ControllerMode>
      extended by kieker.monitoring.core.MonitoringController.ControllerMode
All Implemented Interfaces:
Serializable, Comparable<MonitoringController.ControllerMode>
Enclosing class:
MonitoringController

public static enum MonitoringController.ControllerMode
extends Enum<MonitoringController.ControllerMode>


Enum Constant Summary
REALTIME
          The controller sets the loggingTimestamp of incoming records according to the current time.
REPLAY
          The loggingTimestamp is not set by the newMonitoringRecord method.
 
Method Summary
static MonitoringController.ControllerMode valueOf(String name)
          Returns the enum constant of this type with the specified name.
static MonitoringController.ControllerMode[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

REPLAY

public static final MonitoringController.ControllerMode REPLAY
The loggingTimestamp is not set by the newMonitoringRecord method. This is required to replay recorded traces with the original timestamps.


REALTIME

public static final MonitoringController.ControllerMode REALTIME
The controller sets the loggingTimestamp of incoming records according to the current time.

Method Detail

values

public static MonitoringController.ControllerMode[] 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 (MonitoringController.ControllerMode c : MonitoringController.ControllerMode.values())
    System.out.println(c);

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

valueOf

public static MonitoringController.ControllerMode 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

Kieker 1.2

Copyright 2010 the Kieker Project, http://kieker.sourceforge.net