public static enum Task.Mode extends Enum<Task.Mode>
Modifier and Type | Method and Description |
---|---|
static Task.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Task.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Task.Mode clean
public static final Task.Mode sync
public static final Task.Mode async
public static Task.Mode[] values()
for (Task.Mode c : Task.Mode.values()) System.out.println(c);
public static Task.Mode 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 © 2005-2024 LSC project. All Rights Reserved.