Enum Class JobSet.ExecutionMode

java.lang.Object
java.lang.Enum<JobSet.ExecutionMode>
oracle.as.scheduler.JobSet.ExecutionMode
All Implemented Interfaces:
Serializable, Comparable<JobSet.ExecutionMode>, java.lang.constant.Constable
Enclosing class:
JobSet

public static enum JobSet.ExecutionMode extends Enum<JobSet.ExecutionMode>
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.

  • Enum Constant Details

    • UNKNOWN

      public static final JobSet.ExecutionMode UNKNOWN
      Unknown or invalid execution mode. This mode is not valid for a JobSet.
    • NONE

      public static final JobSet.ExecutionMode NONE
      A request that is not a JobSet will have a mode of NONE. This mode is not valid for a JobSet.
    • SERIAL

      public static final JobSet.ExecutionMode SERIAL
      Serial JobSet execution mode. The jobset steps execute in the sequence they are defined in the JobSet.
    • PARALLEL

      public static final JobSet.ExecutionMode 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

      public static JobSet.ExecutionMode[] 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

      public static JobSet.ExecutionMode valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • value

      public String 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

      public String toString()
      Equivalent to value().
      Overrides:
      toString in class Enum<JobSet.ExecutionMode>
    • toIntString

      public String toIntString()
      The intValue() value represented as a string.
      Returns:
      the string representation of the associated numeric value
    • valueOf

      public static JobSet.ExecutionMode valueOf(int value)
      The ExecutionMode associated with the given numeric value.
      Parameters:
      value - the value to convert
      Returns:
      the correspoinding execution mode
    • fromString

      public static JobSet.ExecutionMode fromString(String execModeStr)
      Converts a stringified execution mode into a ExecutionMode object.
      Parameters:
      execModeStr - the string to convert. This should correspond to a value returned by toIntString() of an execution mode.
      Returns:
      converted execution mode; or ExecutionMode.UNKNOWN if execModeStr is invalid; or null if execModeStr is null.
    • toString

      public String toString(Locale locale)
      Enterprise Manager support to acquire a localized string value.
      Parameters:
      locale - the desired locale.
      Returns:
      the localized string