public enum WorkflowEvaluationStatus extends Enum<WorkflowEvaluationStatus>
Java class for WorkflowEvaluationStatus.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="WorkflowEvaluationStatus">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="PENDING"/>
<enumeration value="TRIGGERED"/>
<enumeration value="NOT_TRIGGERED"/>
<enumeration value="CANCELLED"/>
<enumeration value="UNKNOWN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CANCELLED
The associated proposal was retracted, this rule is no longer valid.
|
NOT_TRIGGERED
The workflow external condition has not been triggered.
|
PENDING
The workflow external condition is pending evaluation.
|
TRIGGERED
The workflow external condition has been triggered.
|
UNKNOWN
The value returned if the actual value is not exposed by the requested API version.
|
| Modifier and Type | Method and Description |
|---|---|
static WorkflowEvaluationStatus |
fromValue(String v) |
String |
value() |
static WorkflowEvaluationStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorkflowEvaluationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkflowEvaluationStatus PENDING
public static final WorkflowEvaluationStatus TRIGGERED
public static final WorkflowEvaluationStatus NOT_TRIGGERED
public static final WorkflowEvaluationStatus CANCELLED
public static final WorkflowEvaluationStatus UNKNOWN
public static WorkflowEvaluationStatus[] values()
for (WorkflowEvaluationStatus c : WorkflowEvaluationStatus.values()) System.out.println(c);
public static WorkflowEvaluationStatus valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static WorkflowEvaluationStatus fromValue(String v)
Copyright © 2018. All Rights Reserved.