Uses of Class
org.yaml.snakeyaml.nodes.Node

Packages that use Node
org.yaml.snakeyaml   
org.yaml.snakeyaml.composer   
org.yaml.snakeyaml.constructor   
org.yaml.snakeyaml.nodes   
org.yaml.snakeyaml.representer   
org.yaml.snakeyaml.serializer   
 

Uses of Node in org.yaml.snakeyaml
 

Methods in org.yaml.snakeyaml that return Node
 Node Loader.compose(Reader yaml)
          Deprecated. Parse the first YAML document in a stream and produce the corresponding representation tree.
 Node Yaml.compose(Reader yaml)
          Parse the first YAML document in a stream and produce the corresponding representation tree.
 

Methods in org.yaml.snakeyaml that return types with arguments of type Node
 Iterable<Node> Loader.composeAll(Reader yaml)
          Deprecated. Parse all YAML documents in a stream and produce corresponding representation trees.
 Iterable<Node> Yaml.composeAll(Reader yaml)
          Parse all YAML documents in a stream and produce corresponding representation trees.
 

Uses of Node in org.yaml.snakeyaml.composer
 

Methods in org.yaml.snakeyaml.composer that return Node
 Node Composer.getNode()
          Reads and composes the next document.
 Node Composer.getSingleNode()
          Reads a document from a source that contains only one document.
 

Uses of Node in org.yaml.snakeyaml.constructor
 

Methods in org.yaml.snakeyaml.constructor with parameters of type Node
 Object Construct.construct(Node node)
          Construct a Java instance with all the properties injected when it is possible.
 Object Constructor.ConstructScalar.construct(Node nnode)
           
 Object SafeConstructor.ConstructYamlNull.construct(Node node)
           
 Object SafeConstructor.ConstructYamlBool.construct(Node node)
           
 Object SafeConstructor.ConstructYamlInt.construct(Node node)
           
 Object SafeConstructor.ConstructYamlFloat.construct(Node node)
           
 Object SafeConstructor.ConstructYamlBinary.construct(Node node)
           
 Object SafeConstructor.ConstructYamlTimestamp.construct(Node node)
           
 Object SafeConstructor.ConstructYamlOmap.construct(Node node)
           
 Object SafeConstructor.ConstructYamlPairs.construct(Node node)
           
 Object SafeConstructor.ConstructYamlSet.construct(Node node)
           
 Object SafeConstructor.ConstructYamlStr.construct(Node node)
           
 Object SafeConstructor.ConstructYamlSeq.construct(Node node)
           
 Object SafeConstructor.ConstructYamlMap.construct(Node node)
           
 Object SafeConstructor.ConstructUndefined.construct(Node node)
           
 void AbstractConstruct.construct2ndStep(Node node, Object data)
          Fail with a reminder to provide the seconds step for a recursive structure
 void Construct.construct2ndStep(Node node, Object object)
          Apply the second step when constructing recursive structures.
 void SafeConstructor.ConstructYamlSet.construct2ndStep(Node node, Object object)
           
 void SafeConstructor.ConstructYamlSeq.construct2ndStep(Node node, Object data)
           
 void SafeConstructor.ConstructYamlMap.construct2ndStep(Node node, Object object)
           
protected  Object BaseConstructor.constructObject(Node node)
          Construct object from the specified Node.
protected  Class<?> Constructor.getClassForNode(Node node)
           
protected  Construct BaseConstructor.getConstructor(Node node)
          Get the constructor to construct the Node.
 

Uses of Node in org.yaml.snakeyaml.nodes
 

Subclasses of Node in org.yaml.snakeyaml.nodes
 class CollectionNode
          Base class for the two collection types mapping and collection.
 class MappingNode
          Represents a map.
 class ScalarNode
          Represents a scalar node.
 class SequenceNode
          Represents a sequence.
 

Methods in org.yaml.snakeyaml.nodes that return Node
 Node NodeTuple.getKeyNode()
          Key node.
 Node NodeTuple.getValueNode()
          Value node.
 

Methods in org.yaml.snakeyaml.nodes that return types with arguments of type Node
 List<Node> SequenceNode.getValue()
          Returns the elements in this sequence.
 

Constructors in org.yaml.snakeyaml.nodes with parameters of type Node
NodeTuple(Node keyNode, Node valueNode)
           
 

Constructor parameters in org.yaml.snakeyaml.nodes with type arguments of type Node
SequenceNode(Tag tag, boolean resolved, List<Node> value, Mark startMark, Mark endMark, Boolean flowStyle)
           
SequenceNode(Tag tag, List<Node> value, Boolean flowStyle)
           
 

Uses of Node in org.yaml.snakeyaml.representer
 

Fields in org.yaml.snakeyaml.representer with type parameters of type Node
protected  Map<Object,Node> BaseRepresenter.representedObjects
           
 

Methods in org.yaml.snakeyaml.representer that return Node
 Node Representer.RepresentJavaBean.representData(Object data)
           
protected  Node BaseRepresenter.representData(Object data)
           
 Node Represent.representData(Object data)
          Create a Node
protected  Node BaseRepresenter.representMapping(Tag tag, Map<? extends Object,Object> mapping, Boolean flowStyle)
           
protected  Node BaseRepresenter.representScalar(Tag tag, String value)
           
protected  Node BaseRepresenter.representScalar(Tag tag, String value, Character style)
           
protected  Node BaseRepresenter.representSequence(Tag tag, Iterable<? extends Object> sequence, Boolean flowStyle)
           
 

Methods in org.yaml.snakeyaml.representer with parameters of type Node
protected  void Representer.checkGlobalTag(Property property, Node node, Object object)
          Remove redundant global tag for a type safe (generic) collection if it is the same as defined by the JavaBean property
 

Uses of Node in org.yaml.snakeyaml.serializer
 

Methods in org.yaml.snakeyaml.serializer with parameters of type Node
 void Serializer.serialize(Node node)
           
 



Copyright © 2008-2010. All Rights Reserved.