public enum ChallengePriority extends java.lang.Enum<ChallengePriority>
| Modifier and Type | Method and Description |
|---|---|
static ChallengePriority |
fromValue(int value) |
int |
intValue() |
static ChallengePriority |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChallengePriority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Deprecated public static final ChallengePriority NONE
public static final ChallengePriority HIGH
public static final ChallengePriority MEDIUM
public static final ChallengePriority LOW
public static ChallengePriority[] values()
for (ChallengePriority c : ChallengePriority.values()) System.out.println(c);
public static ChallengePriority 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 nullpublic static ChallengePriority fromValue(int value)
public int intValue()