Uses of Class
org.snakeyaml.engine.v2.nodes.Node
-
-
Uses of Node in org.snakeyaml.engine.v2.api
Methods in org.snakeyaml.engine.v2.api that return Node Modifier and Type Method Description NodeRepresentToNode. representData(java.lang.Object data)Create a NodeMethods in org.snakeyaml.engine.v2.api with parameters of type Node Modifier and Type Method Description java.lang.ObjectConstructNode. construct(Node node)Construct a Java instance with all the properties injected when it is possible.default voidConstructNode. constructRecursive(Node node, java.lang.Object object)Apply the second step when constructing recursive structures.voidDump. dumpNode(Node node, StreamDataWriter streamDataWriter)Dump the provided Node into a YAML stream. -
Uses of Node in org.snakeyaml.engine.v2.api.lowlevel
Methods in org.snakeyaml.engine.v2.api.lowlevel that return types with arguments of type Node Modifier and Type Method Description java.lang.Iterable<Node>Compose. composeAllFromInputStream(java.io.InputStream yaml)Parse all YAML documents in a stream and produce corresponding representation trees.java.lang.Iterable<Node>Compose. composeAllFromReader(java.io.Reader yaml)Parse all YAML documents in a stream and produce corresponding representation trees.java.lang.Iterable<Node>Compose. composeAllFromString(java.lang.String yaml)Parse all YAML documents in a stream and produce corresponding representation trees.java.util.Optional<Node>Compose. composeInputStream(java.io.InputStream yaml)Parse a YAML stream and produceNodejava.util.Optional<Node>Compose. composeReader(java.io.Reader yaml)Parse a YAML stream and produceNodejava.util.Optional<Node>Compose. composeString(java.lang.String yaml)Parse a YAML stream and produceNodeMethods in org.snakeyaml.engine.v2.api.lowlevel with parameters of type Node Modifier and Type Method Description java.util.List<Event>Serialize. serializeOne(Node node)Serialize aNodeand produce events.Method parameters in org.snakeyaml.engine.v2.api.lowlevel with type arguments of type Node Modifier and Type Method Description java.util.List<Event>Serialize. serializeAll(java.util.List<Node> nodes)SerializeNodes and produce events. -
Uses of Node in org.snakeyaml.engine.v2.composer
Fields in org.snakeyaml.engine.v2.composer with type parameters of type Node Modifier and Type Field Description private java.util.Map<Anchor,Node>Composer. anchorsprivate java.util.Set<Node>Composer. recursiveNodesMethods in org.snakeyaml.engine.v2.composer that return Node Modifier and Type Method Description protected NodeComposer. composeKeyNode(MappingNode node)To be able to override composeNode(node) which is a keyprotected NodeComposer. composeMappingNode(java.util.Optional<Anchor> anchor)Create mapping Nodeprivate NodeComposer. composeNode(java.util.Optional<Node> parent)protected NodeComposer. composeScalarNode(java.util.Optional<Anchor> anchor, java.util.List<CommentLine> blockComments)Create ScalarNodeprotected NodeComposer. composeValueNode(MappingNode node)To be able to override composeNode(node) which is a valueNodeComposer. next()Reads and composes the next document.Methods in org.snakeyaml.engine.v2.composer that return types with arguments of type Node Modifier and Type Method Description java.util.Optional<Node>Composer. getSingleNode()Reads a document from a source that contains only one document.Methods in org.snakeyaml.engine.v2.composer with parameters of type Node Modifier and Type Method Description private voidComposer. registerAnchor(Anchor anchor, Node node)Method parameters in org.snakeyaml.engine.v2.composer with type arguments of type Node Modifier and Type Method Description private NodeComposer. composeNode(java.util.Optional<Node> parent) -
Uses of Node in org.snakeyaml.engine.v2.constructor
Fields in org.snakeyaml.engine.v2.constructor with type parameters of type Node Modifier and Type Field Description (package private) java.util.Map<Node,java.lang.Object>BaseConstructor. constructedObjectsprivate java.util.Set<Node>BaseConstructor. recursiveObjectsMethods in org.snakeyaml.engine.v2.constructor with parameters of type Node Modifier and Type Method Description protected java.lang.ObjectBaseConstructor. construct(Node node)Construct complete YAML document.java.lang.ObjectConstructYamlNull. construct(Node node)java.lang.ObjectStandardConstructor.ConstructEnv. construct(Node node)java.lang.ObjectStandardConstructor.ConstructYamlMap. construct(Node node)java.lang.ObjectStandardConstructor.ConstructYamlSeq. construct(Node node)java.lang.ObjectStandardConstructor.ConstructYamlSet. construct(Node node)java.lang.ObjectStandardConstructor.ConstructYamlStr. construct(Node node)private java.lang.ObjectStandardConstructor. constructKey(Node keyNode, java.util.Optional<Mark> contextMark, java.util.Optional<Mark> problemMark)protected java.lang.ObjectBaseConstructor. constructObject(Node node)Construct object from the specified Node.protected java.lang.ObjectBaseConstructor. constructObjectNoCheck(Node node)Construct object from the specified Node.voidStandardConstructor.ConstructYamlMap. constructRecursive(Node node, java.lang.Object object)voidStandardConstructor.ConstructYamlSeq. constructRecursive(Node node, java.lang.Object data)voidStandardConstructor.ConstructYamlSet. constructRecursive(Node node, java.lang.Object object)protected java.lang.StringConstructScalar. constructScalar(Node node)Create String from the provided scalar nodeprotected java.util.Optional<ConstructNode>BaseConstructor. findConstructorFor(Node node)Method parameters in org.snakeyaml.engine.v2.constructor with type arguments of type Node Modifier and Type Method Description java.lang.ObjectBaseConstructor. constructSingleDocument(java.util.Optional<Node> optionalNode)Ensure that the stream contains a single document and construct it -
Uses of Node in org.snakeyaml.engine.v2.constructor.core
Methods in org.snakeyaml.engine.v2.constructor.core with parameters of type Node Modifier and Type Method Description java.lang.ObjectConstructYamlCoreBool. construct(Node node)java.lang.ObjectConstructYamlCoreInt. construct(Node node)protected java.lang.StringConstructYamlCoreFloat. constructScalar(Node node) -
Uses of Node in org.snakeyaml.engine.v2.constructor.json
Methods in org.snakeyaml.engine.v2.constructor.json with parameters of type Node Modifier and Type Method Description java.lang.ObjectConstructOptionalClass. construct(Node node)java.lang.ObjectConstructUuidClass. construct(Node node)java.lang.ObjectConstructYamlBinary. construct(Node node)java.lang.ObjectConstructYamlJsonBool. construct(Node node)java.lang.ObjectConstructYamlJsonFloat. construct(Node node)java.lang.ObjectConstructYamlJsonInt. construct(Node node) -
Uses of Node in org.snakeyaml.engine.v2.nodes
Subclasses of Node in org.snakeyaml.engine.v2.nodes Modifier and Type Class Description classAnchorNodeThis class is only used during representation (dumping)classCollectionNode<T>Base class for the two collection typesmappingandcollection.classMappingNodeRepresents a map.classScalarNodeRepresents a scalar node.classSequenceNodeRepresents a sequence.Fields in org.snakeyaml.engine.v2.nodes declared as Node Modifier and Type Field Description private NodeNodeTuple. keyNodeprivate NodeAnchorNode. realNodeprivate NodeNodeTuple. valueNodeFields in org.snakeyaml.engine.v2.nodes with type parameters of type Node Modifier and Type Field Description private java.util.List<Node>SequenceNode. valueMethods in org.snakeyaml.engine.v2.nodes that return Node Modifier and Type Method Description NodeNodeTuple. getKeyNode()Key node.NodeAnchorNode. getRealNode()getterNodeNodeTuple. getValueNode()Value node.Methods in org.snakeyaml.engine.v2.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.snakeyaml.engine.v2.nodes with parameters of type Node Constructor Description AnchorNode(Node realNode)CreateNodeTuple(Node keyNode, Node valueNode)Constructor parameters in org.snakeyaml.engine.v2.nodes with type arguments of type Node Constructor Description SequenceNode(Tag tag, boolean resolved, java.util.List<Node> value, FlowStyle flowStyle, java.util.Optional<Mark> startMark, java.util.Optional<Mark> endMark)SequenceNode(Tag tag, java.util.List<Node> value, FlowStyle flowStyle) -
Uses of Node in org.snakeyaml.engine.v2.representer
Fields in org.snakeyaml.engine.v2.representer with type parameters of type Node Modifier and Type Field Description protected java.util.Map<java.lang.Object,Node>BaseRepresenter. representedObjectsKeep references of already represented instances.Methods in org.snakeyaml.engine.v2.representer that return Node Modifier and Type Method Description NodeBaseRepresenter. represent(java.lang.Object data)Represent the provided Java instance to a Nodeprotected NodeBaseRepresenter. representData(java.lang.Object data)Find the representer and use it to create the Node from instanceNodeStandardRepresenter.RepresentArray. representData(java.lang.Object data)NodeStandardRepresenter.RepresentBoolean. representData(java.lang.Object data)NodeStandardRepresenter.RepresentByteArray. representData(java.lang.Object data)NodeStandardRepresenter.RepresentEnum. representData(java.lang.Object data)NodeStandardRepresenter.RepresentIterator. representData(java.lang.Object data)NodeStandardRepresenter.RepresentList. representData(java.lang.Object data)NodeStandardRepresenter.RepresentMap. representData(java.lang.Object data)NodeStandardRepresenter.RepresentNull. representData(java.lang.Object data)NodeStandardRepresenter.RepresentNumber. representData(java.lang.Object data)NodeStandardRepresenter.RepresentOptional. representData(java.lang.Object data)NodeStandardRepresenter.RepresentPrimitiveArray. representData(java.lang.Object data)NodeStandardRepresenter.RepresentSet. representData(java.lang.Object data)NodeStandardRepresenter.RepresentString. representData(java.lang.Object data)NodeStandardRepresenter.RepresentUuid. representData(java.lang.Object data)protected NodeBaseRepresenter. representMapping(Tag tag, java.util.Map<?,?> mapping, FlowStyle flowStyle)Create Node for the provided Mapprotected NodeBaseRepresenter. representScalar(Tag tag, java.lang.String value)Create Node for string using PLAIN scalar style if possibleprotected NodeBaseRepresenter. representScalar(Tag tag, java.lang.String value, ScalarStyle style)Create Scalar Node from stringprotected NodeBaseRepresenter. representSequence(Tag tag, java.lang.Iterable<?> sequence, FlowStyle flowStyle)Create Node -
Uses of Node in org.snakeyaml.engine.v2.serializer
Fields in org.snakeyaml.engine.v2.serializer with type parameters of type Node Modifier and Type Field Description private java.util.Map<Node,Anchor>Serializer. anchorsprivate java.util.Set<Node>Serializer. serializedNodesMethods in org.snakeyaml.engine.v2.serializer with parameters of type Node Modifier and Type Method Description private voidSerializer. anchorNode(Node node)AnchorAnchorGenerator. nextAnchor(Node node)Create anchorAnchorNumberAnchorGenerator. nextAnchor(Node node)Create value increasing the numbervoidSerializer. serializeDocument(Node node)Serialize documentprivate voidSerializer. serializeNode(Node node)Recursive serialization of aNode
-