public static enum CheckpointEvent.Code extends Enum<CheckpointEvent.Code>
Enum Constant and Description |
---|
GENERIC
A generic checkpoint; detail will be in the text message.
|
RECORDING_STARTED
The time at which the TX/RX message recording mechanism
was started.
|
RECORDING_STOPPED
The time at which the TX/RX message recording mechanism
was stopped.
|
Modifier and Type | Method and Description |
---|---|
static CheckpointEvent.Code |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CheckpointEvent.Code[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CheckpointEvent.Code RECORDING_STARTED
public static final CheckpointEvent.Code RECORDING_STOPPED
public static final CheckpointEvent.Code GENERIC
public static CheckpointEvent.Code[] values()
for (CheckpointEvent.Code c : CheckpointEvent.Code.values()) System.out.println(c);
public static CheckpointEvent.Code valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2015. All Rights Reserved.