public static enum Node.type extends Enum<Node.type>
Modifier and Type | Field and Description |
---|---|
int |
value |
Modifier and Type | Method and Description |
---|---|
Node.type |
intern() |
String |
toString() |
static Node.type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Node.type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Node.type PRIMITIVE
public static final Node.type GROUP
public static Node.type[] values()
for (Node.type c : Node.type.values()) System.out.println(c);
public static Node.type 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 Node.type intern()
Copyright © 2022. All rights reserved.