Uses of Class
org.snakeyaml.engine.v2.nodes.SequenceNode
-
Packages that use SequenceNode Package Description org.snakeyaml.engine.v2.composer org.snakeyaml.engine.v2.constructor -
-
Uses of SequenceNode in org.snakeyaml.engine.v2.composer
Methods in org.snakeyaml.engine.v2.composer that return SequenceNode Modifier and Type Method Description protected SequenceNode
Composer. composeSequenceNode(java.util.Optional<Anchor> anchor)
Compose a sequence Node from the input starting with SequenceStartEvent -
Uses of SequenceNode in org.snakeyaml.engine.v2.constructor
Methods in org.snakeyaml.engine.v2.constructor with parameters of type SequenceNode Modifier and Type Method Description protected java.util.List<java.lang.Object>
BaseConstructor. constructSequence(SequenceNode node)
Create instance of Listprotected void
BaseConstructor. constructSequenceStep2(SequenceNode node, java.util.Collection<java.lang.Object> collection)
Fill the collection with the data from provided nodeprotected java.util.List<java.lang.Object>
BaseConstructor. createEmptyListForNode(SequenceNode node)
Create List implementation.
-