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