Package org.commonmark.internal.inline
Interface InlineParserState
-
- All Known Implementing Classes:
InlineParserImpl
public interface InlineParserState
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Scanner
scanner()
Return a scanner for the input for the current position (on the character that the inline parser registered interest for).
-
-
-
Method Detail
-
scanner
Scanner scanner()
Return a scanner for the input for the current position (on the character that the inline parser registered interest for).Note that this always returns the same instance, if you want to backtrack you need to use
Scanner.position()
andScanner.setPosition(Position)
.
-
-