public enum BPMOperationType extends Enum<BPMOperationType> implements org.switchyard.component.common.knowledge.operation.KnowledgeOperationType
| Enum Constant and Description |
|---|
ABORT_PROCESS_INSTANCE
The abort process instance type.
|
SIGNAL_EVENT
The signal event type.
|
SIGNAL_EVENT_ALL
The signal event all type.
|
START_PROCESS
The start process type.
|
| Modifier and Type | Method and Description |
|---|---|
static BPMOperationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BPMOperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BPMOperationType START_PROCESS
public static final BPMOperationType SIGNAL_EVENT
public static final BPMOperationType SIGNAL_EVENT_ALL
public static final BPMOperationType ABORT_PROCESS_INSTANCE
public static BPMOperationType[] values()
for (BPMOperationType c : BPMOperationType.values()) System.out.println(c);
public static BPMOperationType 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 nullCopyright © 2013–2017 JBoss by Red Hat. All rights reserved.