Uses of Class
org.snakeyaml.engine.v2.nodes.Node
Packages that use Node
Package
Description
-
Uses of Node in org.snakeyaml.engine.v2.api
Methods in org.snakeyaml.engine.v2.api that return NodeMethods in org.snakeyaml.engine.v2.api with parameters of type NodeModifier and TypeMethodDescriptionConstruct 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 NodeModifier and TypeMethodDescriptionCompose.composeAllFromInputStream(InputStream yaml) Parse all YAML documents in a stream and produce corresponding representation trees.Compose.composeAllFromReader(Reader yaml) Parse all YAML documents in a stream and produce corresponding representation trees.Compose.composeAllFromString(String yaml) Parse all YAML documents in a stream and produce corresponding representation trees.Compose.composeInputStream(InputStream yaml) Parse a YAML stream and produceNodeCompose.composeReader(Reader yaml) Parse a YAML stream and produceNodeCompose.composeString(String yaml) Parse a YAML stream and produceNodeMethods in org.snakeyaml.engine.v2.api.lowlevel with parameters of type NodeModifier and TypeMethodDescriptionSerialize.serializeOne(Node node) Serialize aNodeand produce events.Method parameters in org.snakeyaml.engine.v2.api.lowlevel with type arguments of type Node -
Uses of Node in org.snakeyaml.engine.v2.composer
Classes in org.snakeyaml.engine.v2.composer that implement interfaces with type arguments of type NodeFields in org.snakeyaml.engine.v2.composer with type parameters of type NodeMethods in org.snakeyaml.engine.v2.composer that return NodeModifier and TypeMethodDescriptionprotected NodeComposer.composeKeyNode(MappingNode node) To be able to override composeNode(node) which is a keyprotected NodeComposer.composeMappingNode(Optional<Anchor> anchor) Create mapping Nodeprivate NodeComposer.composeNode(Optional<Node> parent) protected NodeComposer.composeScalarNode(Optional<Anchor> anchor, List<CommentLine> blockComments) Create ScalarNodeprotected NodeComposer.composeValueNode(MappingNode node) To be able to override composeNode(node) which is a valueComposer.next()Reads and composes the next document.Methods in org.snakeyaml.engine.v2.composer that return types with arguments of type NodeModifier and TypeMethodDescriptionComposer.getSingleNode()Reads a document from a source that contains only one document.Methods in org.snakeyaml.engine.v2.composer with parameters of type NodeMethod parameters in org.snakeyaml.engine.v2.composer with type arguments of type Node -
Uses of Node in org.snakeyaml.engine.v2.constructor
Fields in org.snakeyaml.engine.v2.constructor with type parameters of type NodeModifier and TypeFieldDescriptionBaseConstructor.constructedObjectsBaseConstructor.recursiveObjectsMethods in org.snakeyaml.engine.v2.constructor with parameters of type NodeModifier and TypeMethodDescriptionprotected ObjectConstruct complete YAML document.private ObjectStandardConstructor.constructKey(Node keyNode, Optional<Mark> contextMark, Optional<Mark> problemMark) protected ObjectBaseConstructor.constructObject(Node node) Construct object from the specified Node.protected ObjectBaseConstructor.constructObjectNoCheck(Node node) Construct object from the specified Node.voidStandardConstructor.ConstructYamlMap.constructRecursive(Node node, Object object) voidStandardConstructor.ConstructYamlSeq.constructRecursive(Node node, Object data) voidStandardConstructor.ConstructYamlSet.constructRecursive(Node node, Object object) protected StringConstructScalar.constructScalar(Node node) Create String from the provided scalar nodeprotected Optional<ConstructNode> BaseConstructor.findConstructorFor(Node node) Method parameters in org.snakeyaml.engine.v2.constructor with type arguments of type NodeModifier and TypeMethodDescriptionBaseConstructor.constructSingleDocument(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 -
Uses of Node in org.snakeyaml.engine.v2.constructor.json
Methods in org.snakeyaml.engine.v2.constructor.json with parameters of type NodeModifier and TypeMethodDescription -
Uses of Node in org.snakeyaml.engine.v2.nodes
Subclasses of Node in org.snakeyaml.engine.v2.nodesModifier and TypeClassDescriptionclassThis class is only used during representation (dumping)classBase class for the two collection typesmappingandcollection.classRepresents a map.classRepresents a scalar node.classRepresents a sequence.Subclasses with type arguments of type Node in org.snakeyaml.engine.v2.nodesFields in org.snakeyaml.engine.v2.nodes declared as NodeModifier and TypeFieldDescriptionprivate final NodeNodeTuple.keyNodeprivate final NodeAnchorNode.realNodeprivate final NodeNodeTuple.valueNodeFields in org.snakeyaml.engine.v2.nodes with type parameters of type NodeMethods in org.snakeyaml.engine.v2.nodes that return NodeModifier and TypeMethodDescriptionNodeTuple.getKeyNode()Key node.AnchorNode.getRealNode()getterNodeTuple.getValueNode()Value node.Methods in org.snakeyaml.engine.v2.nodes that return types with arguments of type NodeConstructors in org.snakeyaml.engine.v2.nodes with parameters of type NodeConstructor parameters in org.snakeyaml.engine.v2.nodes with type arguments of type Node -
Uses of Node in org.snakeyaml.engine.v2.representer
Fields in org.snakeyaml.engine.v2.representer with type parameters of type NodeModifier and TypeFieldDescriptionBaseRepresenter.representedObjectsKeep references of already represented instances.Methods in org.snakeyaml.engine.v2.representer that return NodeModifier and TypeMethodDescriptionRepresent the provided Java instance to a Nodeprotected final NodeBaseRepresenter.representData(Object data) Find the representer and use it to create the Node from instanceStandardRepresenter.RepresentArray.representData(Object data) StandardRepresenter.RepresentBoolean.representData(Object data) StandardRepresenter.RepresentByteArray.representData(Object data) StandardRepresenter.RepresentEnum.representData(Object data) StandardRepresenter.RepresentIterator.representData(Object data) StandardRepresenter.RepresentList.representData(Object data) StandardRepresenter.RepresentMap.representData(Object data) StandardRepresenter.RepresentNull.representData(Object data) StandardRepresenter.RepresentNumber.representData(Object data) StandardRepresenter.RepresentOptional.representData(Object data) StandardRepresenter.RepresentPrimitiveArray.representData(Object data) StandardRepresenter.RepresentSet.representData(Object data) StandardRepresenter.RepresentString.representData(Object data) StandardRepresenter.RepresentUuid.representData(Object data) protected NodeBaseRepresenter.representMapping(Tag tag, Map<?, ?> mapping, FlowStyle flowStyle) Create Node for the provided Mapprotected NodeBaseRepresenter.representScalar(Tag tag, String value) Create Node for string using PLAIN scalar style if possibleprotected NodeBaseRepresenter.representScalar(Tag tag, String value, ScalarStyle style) Create Scalar Node from stringprotected NodeBaseRepresenter.representSequence(Tag tag, 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 NodeMethods in org.snakeyaml.engine.v2.serializer with parameters of type NodeModifier and TypeMethodDescriptionprivate voidSerializer.anchorNode(Node node) AnchorGenerator.nextAnchor(Node node) Create anchorNumberAnchorGenerator.nextAnchor(Node node) Create value increasing the numbervoidSerializer.serializeDocument(Node node) Serialize documentprivate voidSerializer.serializeNode(Node node) Recursive serialization of aNode