public static enum ProcessConstants.BlockType extends java.lang.Enum<ProcessConstants.BlockType>
| Enum Constant and Description |
|---|
AND_BLOCK
A block with an AND_SPLIT and an AND_JOIN node.
|
DFRD_XOR_BLOCK
A block with a DFRD_XOR_SPLIT and an XOR_JOIN node.
|
LOOP_BLOCK
A block with a LOOP_START and a LOOP_END node.
|
OR_BLOCK
A block with a XOR_SPLIT and an XOR_JOIN node.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
static ProcessConstants.BlockType |
valueOf(int code) |
static ProcessConstants.BlockType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProcessConstants.BlockType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessConstants.BlockType AND_BLOCK
public static final ProcessConstants.BlockType OR_BLOCK
public static final ProcessConstants.BlockType LOOP_BLOCK
public static final ProcessConstants.BlockType DFRD_XOR_BLOCK
public static ProcessConstants.BlockType[] values()
for (ProcessConstants.BlockType c : ProcessConstants.BlockType.values()) System.out.println(c);
public static ProcessConstants.BlockType 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.BlockType valueOf(int code)