public enum OnAllTasksComplete extends Enum<OnAllTasksComplete>
| Enum Constant and Description |
|---|
NO_ACTION
Enum value noAction.
|
TERMINATE_JOB
Enum value terminateJob.
|
| Modifier and Type | Method and Description |
|---|---|
static OnAllTasksComplete |
fromString(String value)
Parses a serialized value to a OnAllTasksComplete instance.
|
String |
toString() |
static OnAllTasksComplete |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OnAllTasksComplete[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OnAllTasksComplete NO_ACTION
public static final OnAllTasksComplete TERMINATE_JOB
public static OnAllTasksComplete[] values()
for (OnAllTasksComplete c : OnAllTasksComplete.values()) System.out.println(c);
public static OnAllTasksComplete 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 nullpublic static OnAllTasksComplete fromString(String value)
value - the serialized value to parse.public String toString()
toString in class Enum<OnAllTasksComplete>Copyright © 2019. All rights reserved.