|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Todo.Priority>
bibliothek.util.Todo.Priority
public static enum Todo.Priority
Tells how important an Todo is
| Enum Constant Summary | |
|---|---|
BUG
The highest priority, bugs are to be repaired as soon as possible |
|
ENHANCEMENT
An enhancement with zero importance |
|
MAJOR
An important enhancement that will ease the use of the framework considerably, also an enhancement that will require some time to complete |
|
MINOR
An enhancement of lesser importance, but will not require much time to implement |
|
| Method Summary | |
|---|---|
static Todo.Priority |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Todo.Priority[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Todo.Priority BUG
public static final Todo.Priority MAJOR
public static final Todo.Priority MINOR
public static final Todo.Priority ENHANCEMENT
| Method Detail |
|---|
public static Todo.Priority[] values()
for (Todo.Priority c : Todo.Priority.values()) System.out.println(c);
public static Todo.Priority valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||