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(Object data)Create a NodeMethods in org.snakeyaml.engine.v2.api with parameters of type Node Modifier and Type Method Description ObjectConstructNode. construct(Node node)Construct a Java instance with all the properties injected when it is possible.default voidConstructNode. constructRecursive(Node node, 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 Iterable<Node>Compose. composeAllFromInputStream(InputStream yaml)Parse all YAML documents in a stream and produce corresponding representation trees.Iterable<Node>Compose. composeAllFromReader(Reader yaml)Parse all YAML documents in a stream and produce corresponding representation trees.Iterable<Node>Compose. composeAllFromString(String yaml)Parse all YAML documents in a stream and produce corresponding representation trees.Optional<Node>Compose. composeInputStream(InputStream yaml)Parse a YAML stream and produceNodeOptional<Node>Compose. composeReader(Reader yaml)Parse a YAML stream and produceNodeOptional<Node>Compose. composeString(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 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 List<Event>Serialize. serializeAll(List<Node> nodes)SerializeNodes and produce events. -
Uses of Node in org.snakeyaml.engine.v2.composer
Methods in org.snakeyaml.engine.v2.composer that return Node Modifier and Type Method Description protected NodeComposer. composeKeyNode(MappingNode node, List<CommentLine> blockComments)protected NodeComposer. composeMappingNode(Optional<Anchor> anchor, List<CommentLine> blockComments)protected NodeComposer. composeScalarNode(Optional<Anchor> anchor, List<CommentLine> blockComments)protected NodeComposer. composeSequenceNode(Optional<Anchor> anchor, List<CommentLine> blockComments)protected NodeComposer. composeValueNode(MappingNode node, List<CommentLine> blockComments)NodeComposer. 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 Optional<Node>Composer. getSingleNode()Reads a document from a source that contains only one document. -
Uses of Node in org.snakeyaml.engine.v2.constructor
Methods in org.snakeyaml.engine.v2.constructor with parameters of type Node Modifier and Type Method Description protected ObjectBaseConstructor. construct(Node node)Construct complete YAML document.ObjectStandardConstructor.ConstructEnv. construct(Node node)ObjectStandardConstructor.ConstructOptionalClass. construct(Node node)ObjectStandardConstructor.ConstructUuidClass. construct(Node node)ObjectStandardConstructor.ConstructYamlBinary. construct(Node node)ObjectStandardConstructor.ConstructYamlBool. construct(Node node)ObjectStandardConstructor.ConstructYamlFloat. construct(Node node)ObjectStandardConstructor.ConstructYamlInt. construct(Node node)ObjectStandardConstructor.ConstructYamlMap. construct(Node node)ObjectStandardConstructor.ConstructYamlNull. construct(Node node)ObjectStandardConstructor.ConstructYamlOmap. construct(Node node)ObjectStandardConstructor.ConstructYamlSeq. construct(Node node)ObjectStandardConstructor.ConstructYamlSet. construct(Node node)ObjectStandardConstructor.ConstructYamlStr. construct(Node node)protected ObjectBaseConstructor. constructObject(Node node)Construct object from the specified Node.protected ObjectBaseConstructor. constructObjectNoCheck(Node node)voidStandardConstructor.ConstructYamlMap. constructRecursive(Node node, Object object)voidStandardConstructor.ConstructYamlSeq. constructRecursive(Node node, Object data)voidStandardConstructor.ConstructYamlSet. constructRecursive(Node node, Object object)protected 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 ObjectBaseConstructor. constructSingleDocument(Optional<Node> optionalNode)Ensure that the stream contains a single document and construct it -
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.Methods in org.snakeyaml.engine.v2.nodes that return Node Modifier and Type Method Description NodeNodeTuple. getKeyNode()Key node.NodeAnchorNode. getRealNode()NodeNodeTuple. getValueNode()Value node.Methods in org.snakeyaml.engine.v2.nodes that return types with arguments of type Node Modifier and Type Method Description 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)NodeTuple(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, List<Node> value, FlowStyle flowStyle, Optional<Mark> startMark, Optional<Mark> endMark)SequenceNode(Tag tag, 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 Map<Object,Node>BaseRepresenter. representedObjectsMethods in org.snakeyaml.engine.v2.representer that return Node Modifier and Type Method Description NodeBaseRepresenter. represent(Object data)Represent the provided Java instance to a Nodeprotected NodeBaseRepresenter. representData(Object data)NodeStandardRepresenter.RepresentArray. representData(Object data)NodeStandardRepresenter.RepresentBoolean. representData(Object data)NodeStandardRepresenter.RepresentByteArray. representData(Object data)NodeStandardRepresenter.RepresentEnum. representData(Object data)NodeStandardRepresenter.RepresentIterator. representData(Object data)NodeStandardRepresenter.RepresentList. representData(Object data)NodeStandardRepresenter.RepresentMap. representData(Object data)NodeStandardRepresenter.RepresentNull. representData(Object data)NodeStandardRepresenter.RepresentNumber. representData(Object data)NodeStandardRepresenter.RepresentOptional. representData(Object data)NodeStandardRepresenter.RepresentPrimitiveArray. representData(Object data)NodeStandardRepresenter.RepresentSet. representData(Object data)NodeStandardRepresenter.RepresentString. representData(Object data)NodeStandardRepresenter.RepresentUuid. representData(Object data)protected NodeBaseRepresenter. representMapping(Tag tag, Map<?,?> mapping, FlowStyle flowStyle)protected NodeBaseRepresenter. representScalar(Tag tag, String value)protected NodeBaseRepresenter. representScalar(Tag tag, String value, ScalarStyle style)protected NodeBaseRepresenter. representSequence(Tag tag, Iterable<?> sequence, FlowStyle flowStyle) -
Uses of Node in org.snakeyaml.engine.v2.serializer
Methods in org.snakeyaml.engine.v2.serializer with parameters of type Node Modifier and Type Method Description AnchorAnchorGenerator. nextAnchor(Node node)AnchorNumberAnchorGenerator. nextAnchor(Node node)voidSerializer. serialize(Node node)
-