Uses of Class
org.yaml.snakeyaml.nodes.Node
-
-
Uses of Node in org.yaml.snakeyaml
Methods in org.yaml.snakeyaml that return Node Modifier and Type Method Description NodeYaml. compose(java.io.Reader yaml)Parse the first YAML document in a stream and produce the corresponding representation tree.NodeYaml. represent(java.lang.Object data)Produce the corresponding representation tree for a given Object.Methods in org.yaml.snakeyaml that return types with arguments of type Node Modifier and Type Method Description java.lang.Iterable<Node>Yaml. composeAll(java.io.Reader yaml)Parse all YAML documents in a stream and produce corresponding representation trees.Methods in org.yaml.snakeyaml with parameters of type Node Modifier and Type Method Description java.lang.ObjectTypeDescription. newInstance(java.lang.String propertyName, Node node)java.lang.ObjectTypeDescription. newInstance(Node node)This method should be overridden for TypeDescription implementations that are supposed to implement instantiation logic that is different from default one as implemented in YAML constructors.java.util.List<Event>Yaml. serialize(Node data)Serialize the representation tree into Events.booleanTypeDescription. setupPropertyType(java.lang.String key, Node valueNode) -
Uses of Node in org.yaml.snakeyaml.composer
Methods in org.yaml.snakeyaml.composer that return Node Modifier and Type Method Description protected NodeComposer. composeKeyNode(MappingNode node)protected NodeComposer. composeMappingNode(java.lang.String anchor)protected NodeComposer. composeScalarNode(java.lang.String anchor)protected NodeComposer. composeSequenceNode(java.lang.String anchor)protected NodeComposer. composeValueNode(MappingNode node)NodeComposer. getNode()Reads and composes the next document.NodeComposer. 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 Modifier and Type Method Description java.lang.ObjectConstruct. construct(Node node)Construct a Java instance with all the properties injected when it is possible.java.lang.ObjectConstructor.ConstructMapping. construct(Node node)Construct JavaBean.java.lang.ObjectConstructor.ConstructScalar. construct(Node nnode)java.lang.ObjectConstructor.ConstructSequence. construct(Node node)java.lang.ObjectConstructor.ConstructYamlObject. construct(Node node)java.lang.ObjectSafeConstructor.ConstructUndefined. construct(Node node)java.lang.ObjectSafeConstructor.ConstructYamlBinary. construct(Node node)java.lang.ObjectSafeConstructor.ConstructYamlBool. construct(Node node)java.lang.ObjectSafeConstructor.ConstructYamlFloat. construct(Node node)java.lang.ObjectSafeConstructor.ConstructYamlInt. construct(Node node)java.lang.ObjectSafeConstructor.ConstructYamlMap. construct(Node node)java.lang.ObjectSafeConstructor.ConstructYamlNull. construct(Node node)java.lang.ObjectSafeConstructor.ConstructYamlOmap. construct(Node node)java.lang.ObjectSafeConstructor.ConstructYamlPairs. construct(Node node)java.lang.ObjectSafeConstructor.ConstructYamlSeq. construct(Node node)java.lang.ObjectSafeConstructor.ConstructYamlSet. construct(Node node)java.lang.ObjectSafeConstructor.ConstructYamlStr. construct(Node node)java.lang.ObjectSafeConstructor.ConstructYamlTimestamp. construct(Node node)voidAbstractConstruct. construct2ndStep(Node node, java.lang.Object data)Fail with a reminder to provide the seconds step for a recursive structurevoidConstruct. construct2ndStep(Node node, java.lang.Object object)Apply the second step when constructing recursive structures.voidConstructor.ConstructMapping. construct2ndStep(Node node, java.lang.Object object)voidConstructor.ConstructSequence. construct2ndStep(Node node, java.lang.Object object)voidConstructor.ConstructYamlObject. construct2ndStep(Node node, java.lang.Object object)voidSafeConstructor.ConstructYamlMap. construct2ndStep(Node node, java.lang.Object object)voidSafeConstructor.ConstructYamlSeq. construct2ndStep(Node node, java.lang.Object data)voidSafeConstructor.ConstructYamlSet. construct2ndStep(Node node, java.lang.Object object)protected java.lang.ObjectBaseConstructor. constructDocument(Node node)Construct complete YAML document.protected java.lang.ObjectBaseConstructor. constructObject(Node node)Construct object from the specified Node.protected java.lang.ObjectBaseConstructor. constructObjectNoCheck(Node node)protected java.lang.ObjectBaseConstructor. finalizeConstruction(Node node, java.lang.Object data)protected java.lang.Class<?>Constructor. getClassForNode(Node node)protected ConstructBaseConstructor. getConstructor(Node node)Get the constructor to construct the Node.protected java.lang.ObjectBaseConstructor. newInstance(java.lang.Class<?> ancestor, Node node)protected java.lang.ObjectBaseConstructor. newInstance(java.lang.Class<?> ancestor, Node node, boolean tryDefault)protected java.lang.ObjectBaseConstructor. newInstance(Node node) -
Uses of Node in org.yaml.snakeyaml.extensions.compactnotation
Methods in org.yaml.snakeyaml.extensions.compactnotation with parameters of type Node Modifier and Type Method Description java.lang.ObjectCompactConstructor.ConstructCompactObject. construct(Node node)voidCompactConstructor.ConstructCompactObject. construct2ndStep(Node node, java.lang.Object object)protected ConstructCompactConstructor. getConstructor(Node node) -
Uses of Node in org.yaml.snakeyaml.nodes
Subclasses of Node in org.yaml.snakeyaml.nodes Modifier and Type Class Description classAnchorNodeclassCollectionNode<T>Base class for the two collection typesmappingandcollection.classMappingNodeRepresents a map.classScalarNodeRepresents a scalar node.classSequenceNodeRepresents a sequence.Methods in org.yaml.snakeyaml.nodes that return Node Modifier and Type Method Description NodeNodeTuple. getKeyNode()Key node.NodeAnchorNode. getRealNode()NodeNodeTuple. getValueNode()Value node.Methods in org.yaml.snakeyaml.nodes that return types with arguments of type Node Modifier and Type Method Description java.util.List<Node>SequenceNode. getValue()Returns the elements in this sequence.Constructors in org.yaml.snakeyaml.nodes with parameters of type Node Constructor Description AnchorNode(Node realNode)NodeTuple(Node keyNode, Node valueNode)Constructor parameters in org.yaml.snakeyaml.nodes with type arguments of type Node Constructor Description SequenceNode(Tag tag, boolean resolved, java.util.List<Node> value, Mark startMark, Mark endMark, java.lang.Boolean style)Deprecated.SequenceNode(Tag tag, boolean resolved, java.util.List<Node> value, Mark startMark, Mark endMark, DumperOptions.FlowStyle flowStyle)SequenceNode(Tag tag, java.util.List<Node> value, java.lang.Boolean style)Deprecated.SequenceNode(Tag tag, java.util.List<Node> value, DumperOptions.FlowStyle flowStyle) -
Uses of Node in org.yaml.snakeyaml.representer
Fields in org.yaml.snakeyaml.representer with type parameters of type Node Modifier and Type Field Description protected java.util.Map<java.lang.Object,Node>BaseRepresenter. representedObjectsMethods in org.yaml.snakeyaml.representer that return Node Modifier and Type Method Description NodeBaseRepresenter. represent(java.lang.Object data)protected NodeBaseRepresenter. representData(java.lang.Object data)NodeRepresent. representData(java.lang.Object data)Create a NodeNodeRepresenter.RepresentJavaBean. representData(java.lang.Object data)protected NodeBaseRepresenter. representMapping(Tag tag, java.util.Map<?,?> mapping, DumperOptions.FlowStyle flowStyle)protected NodeBaseRepresenter. representScalar(Tag tag, java.lang.String value)protected NodeBaseRepresenter. representScalar(Tag tag, java.lang.String value, DumperOptions.ScalarStyle style)protected NodeBaseRepresenter. representSequence(Tag tag, java.lang.Iterable<?> sequence, DumperOptions.FlowStyle flowStyle)Methods in org.yaml.snakeyaml.representer with parameters of type Node Modifier and Type Method Description protected voidRepresenter. checkGlobalTag(Property property, Node node, java.lang.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 Modifier and Type Method Description java.lang.StringAnchorGenerator. nextAnchor(Node node)java.lang.StringNumberAnchorGenerator. nextAnchor(Node node)voidSerializer. serialize(Node node)
-