public enum ChallengeIndicator extends java.lang.Enum<ChallengeIndicator>
| Enum Constant and Description |
|---|
CHALLENGE_REQUESTED |
CHALLENGE_REQUESTED_MANDATE |
NO_CHALLENGE_REQUESTED |
NO_PREFERENCE |
| Modifier and Type | Method and Description |
|---|---|
static ChallengeIndicator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChallengeIndicator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="challenge_requested") public static final ChallengeIndicator CHALLENGE_REQUESTED
@SerializedName(value="challenge_requested_mandate") public static final ChallengeIndicator CHALLENGE_REQUESTED_MANDATE
@SerializedName(value="no_challenge_requested") public static final ChallengeIndicator NO_CHALLENGE_REQUESTED
@SerializedName(value="no_preference") public static final ChallengeIndicator NO_PREFERENCE
public static ChallengeIndicator[] values()
for (ChallengeIndicator c : ChallengeIndicator.values()) System.out.println(c);
public static ChallengeIndicator 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