public enum WorkflowActionType extends Enum<WorkflowActionType>
Java class for WorkflowActionType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="WorkflowActionType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="FieldUpdate"/>
<enumeration value="KnowledgePublish"/>
<enumeration value="Task"/>
<enumeration value="Alert"/>
<enumeration value="Send"/>
<enumeration value="OutboundMessage"/>
<enumeration value="FlowAction"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ALERT |
FIELD_UPDATE |
FLOW_ACTION |
KNOWLEDGE_PUBLISH |
OUTBOUND_MESSAGE |
SEND |
TASK |
| Modifier and Type | Method and Description |
|---|---|
static WorkflowActionType |
fromValue(String v) |
String |
value() |
static WorkflowActionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorkflowActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkflowActionType FIELD_UPDATE
public static final WorkflowActionType KNOWLEDGE_PUBLISH
public static final WorkflowActionType TASK
public static final WorkflowActionType ALERT
public static final WorkflowActionType SEND
public static final WorkflowActionType OUTBOUND_MESSAGE
public static final WorkflowActionType FLOW_ACTION
public static WorkflowActionType[] values()
for (WorkflowActionType c : WorkflowActionType.values()) System.out.println(c);
public static WorkflowActionType 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 WorkflowActionType fromValue(String v)
Copyright © 2016. All rights reserved.