public static enum IPollHandler.PollResult extends Enum<IPollHandler.PollResult>
Modifier and Type | Method and Description |
---|---|
static IPollHandler.PollResult |
valueOf(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(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 © 2018. All rights reserved.