public static enum EventPoller.PollState extends java.lang.Enum<EventPoller.PollState>
Enum Constant and Description |
---|
GATING |
IDLE |
PROCESSING |
Modifier and Type | Method and Description |
---|---|
static EventPoller.PollState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EventPoller.PollState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventPoller.PollState PROCESSING
public static final EventPoller.PollState GATING
public static final EventPoller.PollState IDLE
public static EventPoller.PollState[] values()
for (EventPoller.PollState c : EventPoller.PollState.values()) System.out.println(c);
public static EventPoller.PollState 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 null