public static enum TaskManager.QueueAction extends Enum<TaskManager.QueueAction>
| Enum Constant and Description |
|---|
addJob
Добавление задания в очередь
|
removeJob
Удаления задания из очереди
|
| Modifier and Type | Method and Description |
|---|---|
static TaskManager.QueueAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TaskManager.QueueAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskManager.QueueAction addJob
public static final TaskManager.QueueAction removeJob
public static TaskManager.QueueAction[] values()
for (TaskManager.QueueAction c : TaskManager.QueueAction.values()) System.out.println(c);
public static TaskManager.QueueAction 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 © 2018. All rights reserved.