public enum RecordingType extends java.lang.Enum<RecordingType>
| Enum Constant and Description |
|---|
LOCAL_ASYNCHRONOUS
Local asynchronous monitoring (internal event style).
|
LOCAL_SYNCHRONOUS
Local synchronous monitoring (direct call style).
|
TCP
Remote TCP-based monitoring (external event style).
|
| Modifier and Type | Field and Description |
|---|---|
private boolean |
synchronizedRecorder
Stores whether a synchronized recorder frontend shall be used.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
useSynchronizedRecorder()
Returns whether a synchronized recorder frontend shall be used.
|
static RecordingType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RecordingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecordingType LOCAL_SYNCHRONOUS
public static final RecordingType LOCAL_ASYNCHRONOUS
public static final RecordingType TCP
private boolean synchronizedRecorder
public static RecordingType[] values()
for (RecordingType c : RecordingType.values()) System.out.println(c);
public static RecordingType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic boolean useSynchronizedRecorder()
true if a synchronized recorder frontend shall
be used, false else