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.emitter org.snakeyaml.engine.v2.nodes org.snakeyaml.engine.v2.serializer -
-
Uses of CommentLine in org.snakeyaml.engine.v2.comments
Fields in org.snakeyaml.engine.v2.comments with type parameters of type CommentLine Modifier and Type Field Description private java.util.List<CommentLine>
CommentEventsCollector. commentLineList
Methods in org.snakeyaml.engine.v2.comments that return types with arguments of type CommentLine Modifier and Type Method Description java.util.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 Node
Composer. composeScalarNode(java.util.Optional<Anchor> anchor, java.util.List<CommentLine> blockComments)
Create ScalarNode -
Uses of CommentLine in org.snakeyaml.engine.v2.emitter
Method parameters in org.snakeyaml.engine.v2.emitter with type arguments of type CommentLine Modifier and Type Method Description private boolean
Emitter. writeCommentLines(java.util.List<CommentLine> commentLines)
-
Uses of CommentLine in org.snakeyaml.engine.v2.nodes
Fields in org.snakeyaml.engine.v2.nodes with type parameters of type CommentLine Modifier and Type Field Description private java.util.List<CommentLine>
Node. blockComments
private java.util.List<CommentLine>
Node. endComments
private java.util.List<CommentLine>
Node. inLineComments
Methods in org.snakeyaml.engine.v2.nodes that return types with arguments of type CommentLine Modifier and Type Method Description java.util.List<CommentLine>
Node. getBlockComments()
The ordered list of blank lines and block comments (full line) that appear before this node.java.util.List<CommentLine>
Node. getEndComments()
The ordered list of blank lines and block comments (full line) that appear AFTER this node.java.util.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 void
Node. setBlockComments(java.util.List<CommentLine> blockComments)
void
Node. setEndComments(java.util.List<CommentLine> endComments)
void
Node. setInLineComments(java.util.List<CommentLine> inLineComments)
-
Uses of CommentLine in org.snakeyaml.engine.v2.serializer
Method parameters in org.snakeyaml.engine.v2.serializer with type arguments of type CommentLine Modifier and Type Method Description private void
Serializer. serializeComments(java.util.List<CommentLine> comments)
-