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