Uses of Class
xmlgp.NodeType

Uses of NodeType in xmlgp
 

Methods in xmlgp that return NodeType
 NodeType Node.getType()
          Returns the type of the node.
static NodeType NodeType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static NodeType[] NodeType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in xmlgp with parameters of type NodeType
 void Node.setLeafNode(NodeType type, java.lang.String value)
          Sets terminal node and sets all attributes at once.
 void Node.setNonTerminalNode(NodeType type, java.lang.String value, java.util.List<Node> children)
          Sets non terminal node and sets all attributes at once.
 void Node.setType(NodeType type)
          Sets the type of the node.