public enum FlowProcessType extends Enum<FlowProcessType>
Java class for FlowProcessType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="FlowProcessType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="AutoLaunchedFlow"/>
<enumeration value="Flow"/>
<enumeration value="Workflow"/>
<enumeration value="LoginFlow"/>
<enumeration value="ActionPlan"/>
<enumeration value="JourneyBuilderIntegration"/>
<enumeration value="UserProvisioningFlow"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ACTION_PLAN |
AUTO_LAUNCHED_FLOW |
FLOW |
JOURNEY_BUILDER_INTEGRATION |
LOGIN_FLOW |
USER_PROVISIONING_FLOW |
WORKFLOW |
| Modifier and Type | Method and Description |
|---|---|
static FlowProcessType |
fromValue(String v) |
String |
value() |
static FlowProcessType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlowProcessType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlowProcessType AUTO_LAUNCHED_FLOW
public static final FlowProcessType FLOW
public static final FlowProcessType WORKFLOW
public static final FlowProcessType LOGIN_FLOW
public static final FlowProcessType ACTION_PLAN
public static final FlowProcessType JOURNEY_BUILDER_INTEGRATION
public static final FlowProcessType USER_PROVISIONING_FLOW
public static FlowProcessType[] values()
for (FlowProcessType c : FlowProcessType.values()) System.out.println(c);
public static FlowProcessType 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 FlowProcessType fromValue(String v)
Copyright © 2016. All rights reserved.