public static enum ProcessConstants.EdgeState extends java.lang.Enum<ProcessConstants.EdgeState>
| Enum Constant and Description |
|---|
ES_FALSE
The edge has been deselected.
|
ES_NS
The edge has no state yet.
|
ES_TRUE
The edge has been selected.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
static ProcessConstants.EdgeState |
valueOf(int code) |
static ProcessConstants.EdgeState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProcessConstants.EdgeState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessConstants.EdgeState ES_TRUE
public static final ProcessConstants.EdgeState ES_FALSE
public static final ProcessConstants.EdgeState ES_NS
public static ProcessConstants.EdgeState[] values()
for (ProcessConstants.EdgeState c : ProcessConstants.EdgeState.values()) System.out.println(c);
public static ProcessConstants.EdgeState 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.EdgeState valueOf(int code)