Package org.openapitools.client.model
Enum MessageCorrelationResultWithVariableDto.ResultTypeEnum
- java.lang.Object
-
- java.lang.Enum<MessageCorrelationResultWithVariableDto.ResultTypeEnum>
-
- org.openapitools.client.model.MessageCorrelationResultWithVariableDto.ResultTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<MessageCorrelationResultWithVariableDto.ResultTypeEnum>
- Enclosing class:
- MessageCorrelationResultWithVariableDto
public static enum MessageCorrelationResultWithVariableDto.ResultTypeEnum extends Enum<MessageCorrelationResultWithVariableDto.ResultTypeEnum>
Indicates if the message was correlated to a message start event or an intermediate message catching event. In the first case, the resultType is `ProcessDefinition` and otherwise `Execution`.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classMessageCorrelationResultWithVariableDto.ResultTypeEnum.Adapter
-
Enum Constant Summary
Enum Constants Enum Constant Description EXECUTIONPROCESSDEFINITION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MessageCorrelationResultWithVariableDto.ResultTypeEnumfromValue(String value)StringgetValue()StringtoString()static MessageCorrelationResultWithVariableDto.ResultTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static MessageCorrelationResultWithVariableDto.ResultTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EXECUTION
public static final MessageCorrelationResultWithVariableDto.ResultTypeEnum EXECUTION
-
PROCESSDEFINITION
public static final MessageCorrelationResultWithVariableDto.ResultTypeEnum PROCESSDEFINITION
-
-
Method Detail
-
values
public static MessageCorrelationResultWithVariableDto.ResultTypeEnum[] 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 (MessageCorrelationResultWithVariableDto.ResultTypeEnum c : MessageCorrelationResultWithVariableDto.ResultTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MessageCorrelationResultWithVariableDto.ResultTypeEnum 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<MessageCorrelationResultWithVariableDto.ResultTypeEnum>
-
fromValue
public static MessageCorrelationResultWithVariableDto.ResultTypeEnum fromValue(String value)
-
-