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