public static enum NodeId.NodeType extends 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(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(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 null