public enum NodeType extends Enum<NodeType>
| Enum Constant and Description |
|---|
CONCRETE_NODE
CONCRETE_NODE
|
GRAPH_NODE
GRAPH_NODE
|
NAMED_NODE
NAMED_NODE
|
NI_NODE
NI_NODE
|
ROOT_CONSTANT_NODE
ROOT_CONSTANT_NODE
|
TREE_NODE
TREE_NODE
|
| Modifier and Type | Method and Description |
|---|---|
int |
getMergePrecedence() |
boolean |
isAbstract() |
boolean |
isNITarget() |
static NodeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeType NAMED_NODE
public static final NodeType NI_NODE
public static final NodeType ROOT_CONSTANT_NODE
public static final NodeType TREE_NODE
public static final NodeType GRAPH_NODE
public static final NodeType CONCRETE_NODE
public static NodeType[] values()
for (NodeType c : NodeType.values()) System.out.println(c);
public static 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 nullpublic int getMergePrecedence()
public boolean isNITarget()
public boolean isAbstract()
Copyright © 2018. All rights reserved.