public enum WorkflowConditionType extends java.lang.Enum<WorkflowConditionType>
| Enum Constant and Description |
|---|
ENTITY |
EVENT |
PROCESSING_CHANNEL |
| Modifier and Type | Method and Description |
|---|---|
static WorkflowConditionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WorkflowConditionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="event") public static final WorkflowConditionType EVENT
@SerializedName(value="entity") public static final WorkflowConditionType ENTITY
@SerializedName(value="processing_channel") public static final WorkflowConditionType PROCESSING_CHANNEL
public static WorkflowConditionType[] values()
for (WorkflowConditionType c : WorkflowConditionType.values()) System.out.println(c);
public static WorkflowConditionType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null