protected static enum TrackingEventProcessor.State extends Enum<TrackingEventProcessor.State>
Enum Constant and Description |
---|
NOT_STARTED |
PAUSED |
PAUSED_ERROR |
SHUT_DOWN |
STARTED |
Modifier and Type | Method and Description |
---|---|
static TrackingEventProcessor.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TrackingEventProcessor.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TrackingEventProcessor.State NOT_STARTED
public static final TrackingEventProcessor.State STARTED
public static final TrackingEventProcessor.State PAUSED
public static final TrackingEventProcessor.State SHUT_DOWN
public static final TrackingEventProcessor.State PAUSED_ERROR
public static TrackingEventProcessor.State[] values()
for (TrackingEventProcessor.State c : TrackingEventProcessor.State.values()) System.out.println(c);
public static TrackingEventProcessor.State 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 © 2010–2017. All rights reserved.