kieker.monitoring.core
Enum MonitoringController.ControllerMode
java.lang.Object
java.lang.Enum<MonitoringController.ControllerMode>
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. |
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.
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
Copyright 2010 the Kieker Project, http://kieker.sourceforge.net>