public static enum VoteResponse.ParseResult extends Enum<VoteResponse.ParseResult>
| Enum Constant and Description |
|---|
PASSED |
REVOTE_IMMEDIATELY |
WAIT_TO_REVOTE |
WAIT_TO_VOTE_NEXT |
| Modifier and Type | Method and Description |
|---|---|
static VoteResponse.ParseResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VoteResponse.ParseResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VoteResponse.ParseResult WAIT_TO_REVOTE
public static final VoteResponse.ParseResult REVOTE_IMMEDIATELY
public static final VoteResponse.ParseResult PASSED
public static final VoteResponse.ParseResult WAIT_TO_VOTE_NEXT
public static VoteResponse.ParseResult[] values()
for (VoteResponse.ParseResult c : VoteResponse.ParseResult.values()) System.out.println(c);
public static VoteResponse.ParseResult 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 © 2023. All rights reserved.