public enum GraphState extends java.lang.Enum<GraphState>
Enum Constant and Description |
---|
CopyableElementSelected |
DeletableElementSelected |
ElementsSelected |
MultipleVerticesSelected |
NoElementSelected |
OneElementSelected |
OneTaskSelected |
Modifier and Type | Method and Description |
---|---|
static GraphState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GraphState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GraphState NoElementSelected
public static final GraphState CopyableElementSelected
public static final GraphState DeletableElementSelected
public static final GraphState ElementsSelected
public static final GraphState MultipleVerticesSelected
public static final GraphState OneTaskSelected
public static final GraphState OneElementSelected
public static GraphState[] values()
for (GraphState c : GraphState.values()) System.out.println(c);
public static GraphState 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 null