Uses of Class
org.yaml.snakeyaml.comments.CommentType
-
Packages that use CommentType Package Description org.yaml.snakeyaml.comments org.yaml.snakeyaml.events org.yaml.snakeyaml.scanner org.yaml.snakeyaml.tokens -
-
Uses of CommentType in org.yaml.snakeyaml.comments
Fields in org.yaml.snakeyaml.comments declared as CommentType Modifier and Type Field Description private CommentType
CommentLine. commentType
private CommentType[]
CommentEventsCollector. expectedCommentTypes
Methods in org.yaml.snakeyaml.comments that return CommentType Modifier and Type Method Description CommentType
CommentLine. getCommentType()
Getterstatic CommentType
CommentType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CommentType[]
CommentType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in org.yaml.snakeyaml.comments with parameters of type CommentType Constructor Description CommentEventsCollector(java.util.Queue<Event> eventSource, CommentType... expectedCommentTypes)
Constructor used to collect events emitted by the Serializer.CommentEventsCollector(Parser parser, CommentType... expectedCommentTypes)
Constructor used to collect comment events emitted by a Parser.CommentLine(Mark startMark, Mark endMark, java.lang.String value, CommentType commentType)
Create -
Uses of CommentType in org.yaml.snakeyaml.events
Fields in org.yaml.snakeyaml.events declared as CommentType Modifier and Type Field Description private CommentType
CommentEvent. type
Methods in org.yaml.snakeyaml.events that return CommentType Modifier and Type Method Description CommentType
CommentEvent. getCommentType()
The comment type.Constructors in org.yaml.snakeyaml.events with parameters of type CommentType Constructor Description CommentEvent(CommentType type, java.lang.String value, Mark startMark, Mark endMark)
Create -
Uses of CommentType in org.yaml.snakeyaml.scanner
Methods in org.yaml.snakeyaml.scanner with parameters of type CommentType Modifier and Type Method Description private CommentToken
ScannerImpl. scanComment(CommentType type)
-
Uses of CommentType in org.yaml.snakeyaml.tokens
Fields in org.yaml.snakeyaml.tokens declared as CommentType Modifier and Type Field Description private CommentType
CommentToken. type
Methods in org.yaml.snakeyaml.tokens that return CommentType Modifier and Type Method Description CommentType
CommentToken. getCommentType()
getterConstructors in org.yaml.snakeyaml.tokens with parameters of type CommentType Constructor Description CommentToken(CommentType type, java.lang.String value, Mark startMark, Mark endMark)
Create
-