public enum WorkflowTriggerTypes extends Enum<WorkflowTriggerTypes>
Java class for WorkflowTriggerTypes.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="WorkflowTriggerTypes">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="onCreateOnly"/>
<enumeration value="onCreateOrTriggeringUpdate"/>
<enumeration value="onAllChanges"/>
<enumeration value="OnRecursiveUpdate"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ON_ALL_CHANGES |
ON_CREATE_ONLY |
ON_CREATE_OR_TRIGGERING_UPDATE |
ON_RECURSIVE_UPDATE |
| Modifier and Type | Method and Description |
|---|---|
static WorkflowTriggerTypes |
fromValue(String v) |
String |
value() |
static WorkflowTriggerTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorkflowTriggerTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkflowTriggerTypes ON_CREATE_ONLY
public static final WorkflowTriggerTypes ON_CREATE_OR_TRIGGERING_UPDATE
public static final WorkflowTriggerTypes ON_ALL_CHANGES
public static final WorkflowTriggerTypes ON_RECURSIVE_UPDATE
public static WorkflowTriggerTypes[] values()
for (WorkflowTriggerTypes c : WorkflowTriggerTypes.values()) System.out.println(c);
public static WorkflowTriggerTypes 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 WorkflowTriggerTypes fromValue(String v)
Copyright © 2016. All rights reserved.