public static enum Element.Type extends Enum<Element.Type>
| Enum Constant and Description |
|---|
ATTRIBUTE |
BRANCH |
CALL |
CALL_ASYNC |
CREATE_INSTANCE |
DO_WHILE_BEGIN |
DO_WHILE_END |
ELSE |
ELSE_IF |
END |
END_IF |
ESCALATE |
HUMAN_TASK |
IF |
JOIN_ALL |
JOIN_FIRST |
SPLIT |
START |
VALIDATE_INPUT_VARIABLE |
VALUE |
VARIABLE |
VARIABLES |
WAIT_SIGNAL |
WAIT_TIMER |
WAIT_UNTIL_DATE |
WHILE_DO_BEGIN |
WHILE_DO_END |
| Modifier and Type | Method and Description |
|---|---|
static Element.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Element.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Element.Type START
public static final Element.Type END
public static final Element.Type VARIABLE
public static final Element.Type VARIABLES
public static final Element.Type VALUE
public static final Element.Type CALL
public static final Element.Type CALL_ASYNC
public static final Element.Type HUMAN_TASK
public static final Element.Type WAIT_SIGNAL
public static final Element.Type WAIT_TIMER
public static final Element.Type WAIT_UNTIL_DATE
public static final Element.Type CREATE_INSTANCE
public static final Element.Type ATTRIBUTE
public static final Element.Type WHILE_DO_BEGIN
public static final Element.Type WHILE_DO_END
public static final Element.Type DO_WHILE_BEGIN
public static final Element.Type DO_WHILE_END
public static final Element.Type IF
public static final Element.Type ELSE_IF
public static final Element.Type ELSE
public static final Element.Type END_IF
public static final Element.Type SPLIT
public static final Element.Type BRANCH
public static final Element.Type JOIN_FIRST
public static final Element.Type JOIN_ALL
public static final Element.Type ESCALATE
public static final Element.Type VALIDATE_INPUT_VARIABLE
public static Element.Type[] values()
for (Element.Type c : Element.Type.values()) System.out.println(c);
public static Element.Type 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 © 2018. All rights reserved.