public enum BpmElementType extends Enum<BpmElementType>
| Enum Constant and Description |
|---|
DOCKED_EVENT |
END |
MERGE |
START |
| Modifier and Type | Method and Description |
|---|---|
static BpmElementType |
valueOf(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(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 © 2017. All rights reserved.