Enum Class ITaskQueryService.TaskSequenceBuilderContext
java.lang.Object
java.lang.Enum<ITaskQueryService.TaskSequenceBuilderContext>
oracle.bpel.services.workflow.query.ITaskQueryService.TaskSequenceBuilderContext
- All Implemented Interfaces:
Serializable
,Comparable<ITaskQueryService.TaskSequenceBuilderContext>
,Constable
- Enclosing interface:
- ITaskQueryService
public static enum ITaskQueryService.TaskSequenceBuilderContext
extends Enum<ITaskQueryService.TaskSequenceBuilderContext>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIf there are more than one node in any parallel branch in the TaskSequence tree, then all those nodes will be wrapped by a Sequence object.Reserved for future useIf the client wants workflow patterns to be captured as SequenceGroup objects in the TaskSequence tree, it could pass TaskSequenceBuilderContext.WORKFLOW_PATTERN in the Listparameter of the getTaskSequence method. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.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, toString, valueOf
-
Enum Constant Details
-
STAGE
Reserved for future use -
WORKFLOW_PATTERN
If the client wants workflow patterns to be captured as SequenceGroup objects in the TaskSequence tree, it could pass TaskSequenceBuilderContext.WORKFLOW_PATTERN in the Listparameter of the getTaskSequence method. -
INCLUDE_SEQUENCE_FOR_SINGLE_CHILD
If there are more than one node in any parallel branch in the TaskSequence tree, then all those nodes will be wrapped by a Sequence object. If the client wants each parallel branch to be wrapped with a TaskSequence object, it could pass TaskSequenceBuilderContext.INCLUDE_SEQUENCE_FOR_SINGLE_CHILD in the Listparameter of the getTaskSequence method.
-
-
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
-
get
-