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