public static enum ProcessConstants.NodeType extends java.lang.Enum<ProcessConstants.NodeType>
| Enum Constant and Description |
|---|
NT_AND_JOIN
The join node of a parallel branch.
|
NT_AND_SPLIT
The split node of a parallel branch.
|
NT_DFRD_XOR_SPLIT
The split node of an exclusive branch of which the decision is deferred.
|
NT_ENDFLOW
The end node of a process.
|
NT_ENDLOOP
The last node of a loop-construct.
|
NT_NORMAL
A normal node.
|
NT_STARTFLOW
The start node of a process.
|
NT_STARTLOOP
The first node of a loop-construct.
|
NT_XOR_JOIN
The join node of an exclusive branch.
|
NT_XOR_SPLIT
The split node of an exclusive branch.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
static ProcessConstants.NodeType |
valueOf(int code) |
static ProcessConstants.NodeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProcessConstants.NodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessConstants.NodeType NT_NORMAL
public static final ProcessConstants.NodeType NT_STARTFLOW
public static final ProcessConstants.NodeType NT_ENDFLOW
public static final ProcessConstants.NodeType NT_AND_SPLIT
public static final ProcessConstants.NodeType NT_AND_JOIN
public static final ProcessConstants.NodeType NT_XOR_SPLIT
public static final ProcessConstants.NodeType NT_XOR_JOIN
public static final ProcessConstants.NodeType NT_STARTLOOP
public static final ProcessConstants.NodeType NT_ENDLOOP
public static final ProcessConstants.NodeType NT_DFRD_XOR_SPLIT
public static ProcessConstants.NodeType[] values()
for (ProcessConstants.NodeType c : ProcessConstants.NodeType.values()) System.out.println(c);
public static ProcessConstants.NodeType 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.NodeType valueOf(int code)