Package org.openapitools.client.model
Enum ProcessInstanceModificationInstructionDto.TypeEnum
- java.lang.Object
-
- java.lang.Enum<ProcessInstanceModificationInstructionDto.TypeEnum>
-
- org.openapitools.client.model.ProcessInstanceModificationInstructionDto.TypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<ProcessInstanceModificationInstructionDto.TypeEnum>
- Enclosing class:
- ProcessInstanceModificationInstructionDto
public static enum ProcessInstanceModificationInstructionDto.TypeEnum extends Enum<ProcessInstanceModificationInstructionDto.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 classProcessInstanceModificationInstructionDto.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 ProcessInstanceModificationInstructionDto.TypeEnumfromValue(String value)StringgetValue()StringtoString()static ProcessInstanceModificationInstructionDto.TypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static ProcessInstanceModificationInstructionDto.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 ProcessInstanceModificationInstructionDto.TypeEnum CANCEL
-
STARTBEFOREACTIVITY
public static final ProcessInstanceModificationInstructionDto.TypeEnum STARTBEFOREACTIVITY
-
STARTAFTERACTIVITY
public static final ProcessInstanceModificationInstructionDto.TypeEnum STARTAFTERACTIVITY
-
STARTTRANSITION
public static final ProcessInstanceModificationInstructionDto.TypeEnum STARTTRANSITION
-
-
Method Detail
-
values
public static ProcessInstanceModificationInstructionDto.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 (ProcessInstanceModificationInstructionDto.TypeEnum c : ProcessInstanceModificationInstructionDto.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 ProcessInstanceModificationInstructionDto.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<ProcessInstanceModificationInstructionDto.TypeEnum>
-
fromValue
public static ProcessInstanceModificationInstructionDto.TypeEnum fromValue(String value)
-
-