public enum GoalImportance extends java.lang.Enum<GoalImportance>
| Enum Constant and Description |
|---|
HIGH |
HIGHEST |
LOW |
LOWEST |
MEDIUM |
VERY_HIGH |
VERY_LOW |
| Modifier and Type | Method and Description |
|---|---|
static GoalImportance |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GoalImportance[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GoalImportance HIGHEST
public static final GoalImportance VERY_HIGH
public static final GoalImportance HIGH
public static final GoalImportance MEDIUM
public static final GoalImportance LOW
public static final GoalImportance VERY_LOW
public static final GoalImportance LOWEST
public static GoalImportance[] values()
for (GoalImportance c : GoalImportance.values()) System.out.println(c);
public static GoalImportance 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