Package com.appiancorp.suiteapi.process
Enum Class BulkNodeOption
- All Implemented Interfaces:
Serializable
,Comparable<BulkNodeOption>
,Constable
BulkNodeOption
This provides options to fine-tune the behavior of the bulk node process execution methods.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThis is the default behavior for Recurrence nodes.This is the default behavior for Gateway nodes.This is the default behavior for MNI nodes. -
Method Summary
Modifier and TypeMethodDescriptionstatic BulkNodeOption
Returns the enum constant of this class with the specified name.static BulkNodeOption[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
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
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
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
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
-