public static final class JobSet.ExecutionMode extends Enum
It has following values:
Modifier and Type | Field and Description |
---|---|
static JobSet.ExecutionMode |
NONE
A request that is not a JobSet will have a mode of NONE.
|
static JobSet.ExecutionMode |
PARALLEL
Parallel JobSet execution mode.
|
static JobSet.ExecutionMode |
SERIAL
Serial JobSet execution mode.
|
static JobSet.ExecutionMode |
UNKNOWN
Unknown or invalid execution mode.
|
Modifier and Type | Method and Description |
---|---|
static JobSet.ExecutionMode |
fromString(String execModeStr)
Converts a stringified execution mode into a ExecutionMode object.
|
int |
intValue()
The numeric value associated with this JobSet execution mode.
|
String |
toIntString()
The
intValue() value represented as a string. |
String |
toString()
Equivalent to
value() . |
String |
toString(Locale locale)
Enterprise Manager support to acquire a localized string value.
|
String |
value()
The string value associated with this JobSet execution mode.
|
static JobSet.ExecutionMode |
valueOf(int value)
The ExecutionMode associated with the given numeric value.
|
static JobSet.ExecutionMode |
valueOf(String name) |
static JobSet.ExecutionMode[] |
values() |
public static final JobSet.ExecutionMode UNKNOWN
public static final JobSet.ExecutionMode NONE
public static final JobSet.ExecutionMode SERIAL
public static final JobSet.ExecutionMode PARALLEL
public static JobSet.ExecutionMode[] values()
public static JobSet.ExecutionMode valueOf(String name)
public String value()
public int intValue()
public String toIntString()
intValue()
value represented as a string.public static JobSet.ExecutionMode valueOf(int value)
value
- the value to convertpublic static JobSet.ExecutionMode fromString(String execModeStr)
execModeStr
- the string to convert. This should correspond
to a value returned by toIntString()
of an execution mode.ExecutionMode.UNKNOWN
if execModeStr
is invalid; or null if execModeStr
is null.