public static enum TaskUtils.TaskType extends Enum<TaskUtils.TaskType>
Modifier and Type | Method and Description |
---|---|
static TaskUtils.TaskType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TaskUtils.TaskType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskUtils.TaskType PERSONAL
public static final TaskUtils.TaskType ACTIVE
public static final TaskUtils.TaskType GROUP
public static final TaskUtils.TaskType ALL
public static final TaskUtils.TaskType ADMIN
public static TaskUtils.TaskType[] values()
for (TaskUtils.TaskType c : TaskUtils.TaskType.values()) System.out.println(c);
public static TaskUtils.TaskType 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 © 2001–2020 JBoss by Red Hat. All rights reserved.