Enum Class BulkNodeOption

java.lang.Object
java.lang.Enum<BulkNodeOption>
com.appiancorp.suiteapi.process.BulkNodeOption
All Implemented Interfaces:
Serializable, Comparable<BulkNodeOption>, Constable

public enum BulkNodeOption extends Enum<BulkNodeOption>
BulkNodeOption This provides options to fine-tune the behavior of the bulk node process execution methods.
See Also:
  • Enum Constant Details

    • MNI_STARTS_FROM_BEGINNING

      public static final BulkNodeOption MNI_STARTS_FROM_BEGINNING
      This is the default behavior for MNI nodes. When this option is active, a node with MNI (Multiple Node Instances) starts from the beginning. Example: If a node is currently repeated 100 times, but has only repeated 50 times so far, then it will do another 100 times when started from the beginning.
    • ACTIVE_RECURRENCE_NODES_SKIPPED

      public static final BulkNodeOption ACTIVE_RECURRENCE_NODES_SKIPPED
      This is the default behavior for Recurrence nodes. When this option is active, active recurrence nodes are skipped and thus will not be started or restarted.
    • GATEWAY_NODES_SKIPPED

      public static final BulkNodeOption GATEWAY_NODES_SKIPPED
      This is the default behavior for Gateway nodes. When this option is active, gateway nodes (logic nodes, such as And and Or) are skipped and thus will not be started or restarted.
  • Method Details

    • values

      public static BulkNodeOption[] 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 BulkNodeOption 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