public static enum Path.NodeType extends Enum<Path.NodeType>
| Enum Constant and Description |
|---|
ATTRIBUTE
The node is an attribute.
|
INDEX
The node is an index within an array.
|
| Modifier and Type | Method and Description |
|---|---|
static Path.NodeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Path.NodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Path.NodeType ATTRIBUTE
public static final Path.NodeType INDEX
public static Path.NodeType[] values()
for (Path.NodeType c : Path.NodeType.values()) System.out.println(c);
public static Path.NodeType 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 © 2015. All rights reserved.