Enum HistoricProcessInstanceDto.StateEnum
java.lang.Object
java.lang.Enum<HistoricProcessInstanceDto.StateEnum>
org.camunda.community.rest.client.dto.HistoricProcessInstanceDto.StateEnum
- All Implemented Interfaces:
Serializable,Comparable<HistoricProcessInstanceDto.StateEnum>,java.lang.constant.Constable
- Enclosing class:
- HistoricProcessInstanceDto
public static enum HistoricProcessInstanceDto.StateEnum
extends Enum<HistoricProcessInstanceDto.StateEnum>
Last state of the process instance, possible values are: `ACTIVE` - running process instance `SUSPENDED` - suspended process instances `COMPLETED` - completed through normal end event `EXTERNALLY_TERMINATED` - terminated externally, for instance through REST API `INTERNALLY_TERMINATED` - terminated internally, for instance by terminating boundary event
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptiongetValue()toString()Returns the enum constant of this type with the specified name.static HistoricProcessInstanceDto.StateEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ACTIVE
-
SUSPENDED
-
COMPLETED
-
EXTERNALLY_TERMINATED
-
INTERNALLY_TERMINATED
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
toString
- Overrides:
toStringin classEnum<HistoricProcessInstanceDto.StateEnum>
-
fromValue
-