Uses of Class
org.commonmark.parser.beta.Scanner
Packages that use Scanner
Package
Description
Experimental APIs to use for extensions.
-
Uses of Scanner in org.commonmark.internal
Fields in org.commonmark.internal declared as ScannerMethods in org.commonmark.internal that return ScannerMethods in org.commonmark.internal with parameters of type ScannerModifier and TypeMethodDescriptionprivate boolean
LinkReferenceDefinitionParser.destination
(Scanner scanner) private boolean
private String
InlineParserImpl.parseLinkDestination
(Scanner scanner) Attempt to parse link destination, returning the string or null if no match.(package private) String
InlineParserImpl.parseLinkLabel
(Scanner scanner) Attempt to parse a link label, returning the label between the brackets or null.private 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
-
Uses of Scanner in org.commonmark.internal.inline
Methods in org.commonmark.internal.inline that return ScannerModifier and TypeMethodDescriptionInlineParserState.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 ScannerModifier and TypeMethodDescriptionprivate ParsedInline
private static ParsedInline
HtmlInlineParser.htmlInline
(Position start, Scanner scanner) private static boolean
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 ScannerModifier and TypeMethodDescriptionstatic 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