Package org.openapitools.client.model
Enum MultipleProcessInstanceModificationInstructionDto.TypeEnum
- java.lang.Object
-
- java.lang.Enum<MultipleProcessInstanceModificationInstructionDto.TypeEnum>
-
- org.openapitools.client.model.MultipleProcessInstanceModificationInstructionDto.TypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<MultipleProcessInstanceModificationInstructionDto.TypeEnum>
- Enclosing class:
- MultipleProcessInstanceModificationInstructionDto
public static enum MultipleProcessInstanceModificationInstructionDto.TypeEnum extends Enum<MultipleProcessInstanceModificationInstructionDto.TypeEnum>
**Mandatory**. One of the following values: `cancel`, `startBeforeActivity`, `startAfterActivity`, `startTransition`. * A cancel instruction requests cancellation of a single activity instance or all instances of one activity. * A startBeforeActivity instruction requests to enter a given activity. * A startAfterActivity instruction requests to execute the single outgoing sequence flow of a given activity. * A startTransition instruction requests to execute a specific sequence flow.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classMultipleProcessInstanceModificationInstructionDto.TypeEnum.Adapter
-
Enum Constant Summary
Enum Constants Enum Constant Description CANCELSTARTAFTERACTIVITYSTARTBEFOREACTIVITYSTARTTRANSITION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MultipleProcessInstanceModificationInstructionDto.TypeEnumfromValue(String value)StringgetValue()StringtoString()static MultipleProcessInstanceModificationInstructionDto.TypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static MultipleProcessInstanceModificationInstructionDto.TypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CANCEL
public static final MultipleProcessInstanceModificationInstructionDto.TypeEnum CANCEL
-
STARTBEFOREACTIVITY
public static final MultipleProcessInstanceModificationInstructionDto.TypeEnum STARTBEFOREACTIVITY
-
STARTAFTERACTIVITY
public static final MultipleProcessInstanceModificationInstructionDto.TypeEnum STARTAFTERACTIVITY
-
STARTTRANSITION
public static final MultipleProcessInstanceModificationInstructionDto.TypeEnum STARTTRANSITION
-
-
Method Detail
-
values
public static MultipleProcessInstanceModificationInstructionDto.TypeEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MultipleProcessInstanceModificationInstructionDto.TypeEnum c : MultipleProcessInstanceModificationInstructionDto.TypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MultipleProcessInstanceModificationInstructionDto.TypeEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<MultipleProcessInstanceModificationInstructionDto.TypeEnum>
-
fromValue
public static MultipleProcessInstanceModificationInstructionDto.TypeEnum fromValue(String value)
-
-