Uses of Class
org.snakeyaml.engine.v2.comments.CommentLine
-
Packages that use CommentLine Package Description org.snakeyaml.engine.v2.comments org.snakeyaml.engine.v2.composer org.snakeyaml.engine.v2.nodes -
-
Uses of CommentLine in org.snakeyaml.engine.v2.comments
Methods in org.snakeyaml.engine.v2.comments that return types with arguments of type CommentLine Modifier and Type Method Description List<CommentLine>CommentEventsCollector. consume()Return the events collected and reset the collector. -
Uses of CommentLine in org.snakeyaml.engine.v2.composer
Method parameters in org.snakeyaml.engine.v2.composer with type arguments of type CommentLine 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) -
Uses of CommentLine in org.snakeyaml.engine.v2.nodes
Methods in org.snakeyaml.engine.v2.nodes that return types with arguments of type CommentLine Modifier and Type Method Description List<CommentLine>Node. getBlockComments()The ordered list of blank lines and block comments (full line) that appear before this node.List<CommentLine>Node. getEndComments()The ordered list of blank lines and block comments (full line) that appear AFTER this node.List<CommentLine>Node. getInLineComments()The ordered list of in-line comments.Method parameters in org.snakeyaml.engine.v2.nodes with type arguments of type CommentLine Modifier and Type Method Description voidNode. setBlockComments(List<CommentLine> blockComments)voidNode. setEndComments(List<CommentLine> endComments)voidNode. setInLineComments(List<CommentLine> inLineComments)
-