Enum CloudIntegrationContext.IntegrationContextStatus
- java.lang.Object
-
- java.lang.Enum<CloudIntegrationContext.IntegrationContextStatus>
-
- org.activiti.cloud.api.process.model.CloudIntegrationContext.IntegrationContextStatus
-
- All Implemented Interfaces:
Serializable,Comparable<CloudIntegrationContext.IntegrationContextStatus>
- Enclosing interface:
- CloudIntegrationContext
public static enum CloudIntegrationContext.IntegrationContextStatus extends Enum<CloudIntegrationContext.IntegrationContextStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INTEGRATION_ERROR_RECEIVEDINTEGRATION_REQUESTEDINTEGRATION_RESULT_RECEIVED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CloudIntegrationContext.IntegrationContextStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static CloudIntegrationContext.IntegrationContextStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INTEGRATION_REQUESTED
public static final CloudIntegrationContext.IntegrationContextStatus INTEGRATION_REQUESTED
-
INTEGRATION_RESULT_RECEIVED
public static final CloudIntegrationContext.IntegrationContextStatus INTEGRATION_RESULT_RECEIVED
-
INTEGRATION_ERROR_RECEIVED
public static final CloudIntegrationContext.IntegrationContextStatus INTEGRATION_ERROR_RECEIVED
-
-
Method Detail
-
values
public static CloudIntegrationContext.IntegrationContextStatus[] 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 (CloudIntegrationContext.IntegrationContextStatus c : CloudIntegrationContext.IntegrationContextStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CloudIntegrationContext.IntegrationContextStatus 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
-
-