public static enum ProcessConstants.EdgeProperty extends java.lang.Enum<ProcessConstants.EdgeProperty>
| Enum Constant and Description |
|---|
EDGE_CODE
The edge code,
Edge.getEdgeCode(). |
TYPE
The type of the edge,
ProcessConstants.EdgeType / Edge.getType(). |
USER_ATTRIBUTE
The user attributes.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
static ProcessConstants.EdgeProperty |
valueOf(int code) |
static ProcessConstants.EdgeProperty |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProcessConstants.EdgeProperty[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessConstants.EdgeProperty TYPE
ProcessConstants.EdgeType / Edge.getType().public static final ProcessConstants.EdgeProperty EDGE_CODE
Edge.getEdgeCode().public static final ProcessConstants.EdgeProperty USER_ATTRIBUTE
public static ProcessConstants.EdgeProperty[] values()
for (ProcessConstants.EdgeProperty c : ProcessConstants.EdgeProperty.values()) System.out.println(c);
public static ProcessConstants.EdgeProperty 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.EdgeProperty valueOf(int code)