public enum Constructs extends java.lang.Enum<Constructs>
Enum Constant and Description |
---|
AutomaticTask |
DeferredChoice |
DeferredChoiceLoop |
Edge |
Event |
ExclusiveChoice |
ExclusiveChoiceLoop |
ManualTask |
Model |
Node |
OR |
Originator |
Parallelism |
Sequence |
Variable |
Modifier and Type | Method and Description |
---|---|
static Constructs |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Constructs[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constructs Sequence
public static final Constructs ExclusiveChoice
public static final Constructs DeferredChoice
public static final Constructs Parallelism
public static final Constructs OR
public static final Constructs ExclusiveChoiceLoop
public static final Constructs DeferredChoiceLoop
public static final Constructs Model
public static final Constructs Variable
public static final Constructs Originator
public static final Constructs Event
public static final Constructs Node
public static final Constructs ManualTask
public static final Constructs AutomaticTask
public static final Constructs Edge
public static Constructs[] values()
for (Constructs c : Constructs.values()) System.out.println(c);
public static Constructs 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