public static enum ScheduledTask.TaskSynchronicity extends Enum<ScheduledTask.TaskSynchronicity>
Enum Constant and Description |
---|
ASYNCHRONOUS |
SYNCHRONOUS |
Modifier and Type | Method and Description |
---|---|
static ScheduledTask.TaskSynchronicity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScheduledTask.TaskSynchronicity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScheduledTask.TaskSynchronicity SYNCHRONOUS
public static final ScheduledTask.TaskSynchronicity ASYNCHRONOUS
public static ScheduledTask.TaskSynchronicity[] values()
for (ScheduledTask.TaskSynchronicity c : ScheduledTask.TaskSynchronicity.values()) System.out.println(c);
public static ScheduledTask.TaskSynchronicity 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 null