public enum SBPMEventType extends java.lang.Enum<SBPMEventType>
| Enum Constant and Description |
|---|
BOUNDARY_EVENT |
END_EVENT |
EVENT_SUB_PROCESS |
INTERMEDIATE_CATCH_EVENT |
INTERMEDIATE_THROW_EVENT |
START_EVENT |
| Modifier and Type | Method and Description |
|---|---|
static SBPMEventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SBPMEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SBPMEventType START_EVENT
public static final SBPMEventType INTERMEDIATE_CATCH_EVENT
public static final SBPMEventType INTERMEDIATE_THROW_EVENT
public static final SBPMEventType END_EVENT
public static final SBPMEventType BOUNDARY_EVENT
public static final SBPMEventType EVENT_SUB_PROCESS
public static SBPMEventType[] values()
for (SBPMEventType c : SBPMEventType.values()) System.out.println(c);
public static SBPMEventType 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