Package oracle.as.scheduler
Enum Class JobSet.ExecutionMode
- All Implemented Interfaces:
Serializable
,Comparable<JobSet.ExecutionMode>
,java.lang.constant.Constable
- Enclosing class:
- JobSet
Enums to indicate the execution mode for the JobSet.
It has following values:
- SERIAL - when the JobSet should run in serial mode.
- PARALLEL - when the JobSet should run in parallel mode.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic 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.TheintValue()
value represented as a string.toString()
Equivalent tovalue()
.Enterprise Manager support to acquire a localized string value.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
Returns the enum constant of this class with the specified name.static JobSet.ExecutionMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
-
Enum Constant Details
-
UNKNOWN
Unknown or invalid execution mode. This mode is not valid for a JobSet. -
NONE
A request that is not a JobSet will have a mode of NONE. This mode is not valid for a JobSet. -
SERIAL
Serial JobSet execution mode. The jobset steps execute in the sequence they are defined in the JobSet. -
PARALLEL
Parallel JobSet execution mode. The jobset step execution is not sequenced and steps may execute at the same time or in any order.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
value
The string value associated with this JobSet execution mode.- Returns:
- the associated string value
-
intValue
public int intValue()The numeric value associated with this JobSet execution mode.- Returns:
- the associated numeric value
-
toString
Equivalent tovalue()
.- Overrides:
toString
in classEnum<JobSet.ExecutionMode>
-
toIntString
TheintValue()
value represented as a string.- Returns:
- the string representation of the associated numeric value
-
valueOf
The ExecutionMode associated with the given numeric value.- Parameters:
value
- the value to convert- Returns:
- the correspoinding execution mode
-
fromString
Converts a stringified execution mode into a ExecutionMode object.- Parameters:
execModeStr
- the string to convert. This should correspond to a value returned bytoIntString()
of an execution mode.- Returns:
- converted execution mode; or
ExecutionMode.UNKNOWN
ifexecModeStr
is invalid; or null ifexecModeStr
is null.
-
toString
Enterprise Manager support to acquire a localized string value.- Parameters:
locale
- the desired locale.- Returns:
- the localized string
-