public static enum GraphObject.Kind extends Enum<GraphObject.Kind>
Enum Constant and Description |
---|
ALL |
CONCEPT_OR_GRAPH |
GEDGE |
GNODE |
GRAPH |
Modifier and Type | Method and Description |
---|---|
static GraphObject.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GraphObject.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GraphObject.Kind ALL
public static final GraphObject.Kind GNODE
public static final GraphObject.Kind GEDGE
public static final GraphObject.Kind GRAPH
public static final GraphObject.Kind CONCEPT_OR_GRAPH
public static GraphObject.Kind[] values()
for (GraphObject.Kind c : GraphObject.Kind.values()) System.out.println(c);
public static GraphObject.Kind valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null