Uses of Class
org.commonmark.parser.beta.Scanner
-
Packages that use Scanner Package Description org.commonmark.internal org.commonmark.internal.inline org.commonmark.internal.util org.commonmark.parser.beta Experimental APIs to use for extensions. -
-
Uses of Scanner in org.commonmark.internal
Fields in org.commonmark.internal declared as Scanner Modifier and Type Field Description private Scanner
InlineParserImpl. scanner
Methods in org.commonmark.internal that return Scanner Modifier and Type Method Description Scanner
InlineParserImpl. scanner()
Methods in org.commonmark.internal with parameters of type Scanner Modifier and Type Method Description private boolean
LinkReferenceDefinitionParser. destination(Scanner scanner)
private boolean
LinkReferenceDefinitionParser. label(Scanner scanner)
private java.lang.String
InlineParserImpl. parseLinkDestination(Scanner scanner)
Attempt to parse link destination, returning the string or null if no match.(package private) java.lang.String
InlineParserImpl. parseLinkLabel(Scanner scanner)
Attempt to parse a link label, returning the label between the brackets or null.private java.lang.String
InlineParserImpl. parseLinkTitle(Scanner scanner)
Attempt to parse link title (sans quotes), returning the string or null if no match.private boolean
LinkReferenceDefinitionParser. startDefinition(Scanner scanner)
private boolean
LinkReferenceDefinitionParser. startTitle(Scanner scanner)
private boolean
LinkReferenceDefinitionParser. title(Scanner scanner)
-
Uses of Scanner in org.commonmark.internal.inline
Methods in org.commonmark.internal.inline that return Scanner Modifier and Type Method Description Scanner
InlineParserState. scanner()
Return a scanner for the input for the current position (on the character that the inline parser registered interest for).Methods in org.commonmark.internal.inline with parameters of type Scanner Modifier and Type Method Description private ParsedInline
EntityInlineParser. entity(Scanner scanner, Position start)
private static ParsedInline
HtmlInlineParser. htmlInline(Position start, Scanner scanner)
private static boolean
HtmlInlineParser. tryCdata(Scanner scanner)
private static boolean
HtmlInlineParser. tryClosingTag(Scanner scanner)
private static boolean
HtmlInlineParser. tryComment(Scanner scanner)
private static boolean
HtmlInlineParser. tryDeclaration(Scanner scanner)
private static boolean
HtmlInlineParser. tryOpenTag(Scanner scanner)
private static boolean
HtmlInlineParser. tryProcessingInstruction(Scanner scanner)
-
Uses of Scanner in org.commonmark.internal.util
Methods in org.commonmark.internal.util with parameters of type Scanner Modifier and Type Method Description static boolean
LinkScanner. scanLinkDestination(Scanner scanner)
Attempt to scan a link destination, stopping after the destination or returning false.private static boolean
LinkScanner. scanLinkDestinationWithBalancedParens(Scanner scanner)
static boolean
LinkScanner. scanLinkLabelContent(Scanner scanner)
Attempt to scan the contents of a link label (inside the brackets), stopping after the content or returning false.static boolean
LinkScanner. scanLinkTitle(Scanner scanner)
static boolean
LinkScanner. scanLinkTitleContent(Scanner scanner, char endDelimiter)
-
Uses of Scanner in org.commonmark.parser.beta
Methods in org.commonmark.parser.beta that return Scanner Modifier and Type Method Description static Scanner
Scanner. of(SourceLines lines)
-