public static enum TaskManager.ThreadAction extends Enum<TaskManager.ThreadAction>
| Enum Constant and Description |
|---|
finished
Поток завершил исполнение
|
jobFinished
Завершение выполнения задания.
|
jobStart
Начало выполнения задания
|
started
Поток анчал исполнение
|
| Modifier and Type | Method and Description |
|---|---|
static TaskManager.ThreadAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TaskManager.ThreadAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskManager.ThreadAction started
public static final TaskManager.ThreadAction finished
public static final TaskManager.ThreadAction jobStart
public static final TaskManager.ThreadAction jobFinished
public static TaskManager.ThreadAction[] values()
for (TaskManager.ThreadAction c : TaskManager.ThreadAction.values()) System.out.println(c);
public static TaskManager.ThreadAction 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.