public static enum ProcessConstants.EdgeType extends java.lang.Enum<ProcessConstants.EdgeType>
| Enum Constant and Description |
|---|
ET_CONTROL
A control edge.
|
ET_LOOP
A loop edge.
|
ET_SYNC
A synchronisation edge for synchronising parallel activities.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
static ProcessConstants.EdgeType |
valueOf(int code) |
static ProcessConstants.EdgeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProcessConstants.EdgeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessConstants.EdgeType ET_CONTROL
public static final ProcessConstants.EdgeType ET_LOOP
public static final ProcessConstants.EdgeType ET_SYNC
public static ProcessConstants.EdgeType[] values()
for (ProcessConstants.EdgeType c : ProcessConstants.EdgeType.values()) System.out.println(c);
public static ProcessConstants.EdgeType 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 nullpublic int getCode()
public static ProcessConstants.EdgeType valueOf(int code)