public enum TaskFilterType extends Enum<TaskFilterType>
Enum Constant and Description |
---|
ALL |
CLAIMED_BY_ME |
CLAIMED_BY_OTHERS |
PENDING |
Modifier and Type | Method and Description |
---|---|
static TaskFilterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TaskFilterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskFilterType CLAIMED_BY_ME
public static final TaskFilterType CLAIMED_BY_OTHERS
public static final TaskFilterType ALL
public static final TaskFilterType PENDING
public static TaskFilterType[] values()
for (TaskFilterType c : TaskFilterType.values()) System.out.println(c);
public static TaskFilterType 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 © 2015. All Rights Reserved.