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