public enum WorkflowRequestType extends Enum<WorkflowRequestType>
Java class for WorkflowRequestType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="WorkflowRequestType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="WORKFLOW_APPROVAL_REQUEST"/>
<enumeration value="WORKFLOW_EXTERNAL_CONDITION_REQUEST"/>
<enumeration value="UNKNOWN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
UNKNOWN |
WORKFLOW_APPROVAL_REQUEST
This is a request for an approval action.
|
WORKFLOW_EXTERNAL_CONDITION_REQUEST
This is an external condition request.
|
| Modifier and Type | Method and Description |
|---|---|
static WorkflowRequestType |
fromValue(String v) |
String |
value() |
static WorkflowRequestType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorkflowRequestType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkflowRequestType WORKFLOW_APPROVAL_REQUEST
public static final WorkflowRequestType WORKFLOW_EXTERNAL_CONDITION_REQUEST
public static final WorkflowRequestType UNKNOWN
public static WorkflowRequestType[] values()
for (WorkflowRequestType c : WorkflowRequestType.values()) System.out.println(c);
public static WorkflowRequestType 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 WorkflowRequestType fromValue(String v)
Copyright © 2018. All Rights Reserved.