Uses of Class
org.commonmark.parser.IncludeSourceSpans
-
Packages that use IncludeSourceSpans Package Description org.commonmark.internal org.commonmark.parser Parsing input text to AST nodes (seeParser
) -
-
Uses of IncludeSourceSpans in org.commonmark.internal
Fields in org.commonmark.internal declared as IncludeSourceSpans Modifier and Type Field Description private IncludeSourceSpans
DocumentParser. includeSourceSpans
Constructors in org.commonmark.internal with parameters of type IncludeSourceSpans Constructor Description DocumentParser(java.util.List<BlockParserFactory> blockParserFactories, InlineParserFactory inlineParserFactory, java.util.List<InlineContentParserFactory> inlineContentParserFactories, java.util.List<DelimiterProcessor> delimiterProcessors, java.util.List<LinkProcessor> linkProcessors, java.util.Set<java.lang.Character> linkMarkers, IncludeSourceSpans includeSourceSpans)
-
Uses of IncludeSourceSpans in org.commonmark.parser
Fields in org.commonmark.parser declared as IncludeSourceSpans Modifier and Type Field Description private IncludeSourceSpans
Parser.Builder. includeSourceSpans
private IncludeSourceSpans
Parser. includeSourceSpans
Methods in org.commonmark.parser that return IncludeSourceSpans Modifier and Type Method Description static IncludeSourceSpans
IncludeSourceSpans. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IncludeSourceSpans[]
IncludeSourceSpans. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.commonmark.parser with parameters of type IncludeSourceSpans Modifier and Type Method Description Parser.Builder
Parser.Builder. includeSourceSpans(IncludeSourceSpans includeSourceSpans)
Whether to calculate source positions for parsedNodes
, seeNode.getSourceSpans()
.
-