Serializable, Comparable<Node.Parsedness>public static enum Node.Parsedness extends Enum<Node.Parsedness>
| Enum Constant | Description |
|---|---|
PARSED |
|
UNPARSABLE |
| Modifier and Type | Method | Description |
|---|---|---|
static Node.Parsedness |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static Node.Parsedness[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Node.Parsedness PARSED
public static final Node.Parsedness UNPARSABLE
public static Node.Parsedness[] values()
for (Node.Parsedness c : Node.Parsedness.values()) System.out.println(c);
public static Node.Parsedness 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 © 2007–2019. All rights reserved.