public static enum NodeId.NodeType extends java.lang.Enum<NodeId.NodeType>
| Enum Constant and Description |
|---|
INSTANCE
Instance node, used when something is bound to an instance.
|
TYPE
Type or class node.
|
| Modifier and Type | Method and Description |
|---|---|
static NodeId.NodeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NodeId.NodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeId.NodeType TYPE
public static final NodeId.NodeType INSTANCE
public static NodeId.NodeType[] values()
for (NodeId.NodeType c : NodeId.NodeType.values()) System.out.println(c);
public static NodeId.NodeType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null