public static enum TodoPerformer.Source extends Enum<TodoPerformer.Source>
Enum Constant and Description |
---|
ALLOCATION
Performers who allocated a todo.
|
DELEGATION
Performers created by delegating a todo.
|
INITIAL
Initial performers specified when a todo is created.
|
Modifier and Type | Method and Description |
---|---|
static TodoPerformer.Source |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TodoPerformer.Source[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TodoPerformer.Source INITIAL
public static final TodoPerformer.Source ALLOCATION
public static final TodoPerformer.Source DELEGATION
public static TodoPerformer.Source[] values()
for (TodoPerformer.Source c : TodoPerformer.Source.values()) System.out.println(c);
public static TodoPerformer.Source 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 © 2007-2020 Whitestein Technologies. All Rights Reserved.