public static enum GraphParser.ParseType extends Enum<GraphParser.ParseType>
| Enum Constant and Description |
|---|
DOCUMENT |
EXECUTABLE |
TYPE_SYSTEM |
| Modifier and Type | Method and Description |
|---|---|
static GraphParser.ParseType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GraphParser.ParseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GraphParser.ParseType DOCUMENT
public static final GraphParser.ParseType EXECUTABLE
public static final GraphParser.ParseType TYPE_SYSTEM
public static GraphParser.ParseType[] values()
for (GraphParser.ParseType c : GraphParser.ParseType.values()) System.out.println(c);
public static GraphParser.ParseType 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 nullCopyright © 2018. All rights reserved.