public enum GraphParseOrder extends Enum<GraphParseOrder>
Java class for graph.order.type.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="graph.order.type">
<restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
<enumeration value="free"/>
<enumeration value="nodesfirst"/>
<enumeration value="adjacencylist"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ADJACENCYLIST |
FREE |
NODESFIRST |
| Modifier and Type | Method and Description |
|---|---|
static GraphParseOrder |
fromValue(String v) |
String |
value() |
static GraphParseOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GraphParseOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GraphParseOrder FREE
public static final GraphParseOrder NODESFIRST
public static final GraphParseOrder ADJACENCYLIST
public static GraphParseOrder[] values()
for (GraphParseOrder c : GraphParseOrder.values()) System.out.println(c);
public static GraphParseOrder 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 nullpublic String value()
public static GraphParseOrder fromValue(String v)