Interface MatchedBlockParser
-
- All Known Implementing Classes:
MatchedBlockParserImpl
public interface MatchedBlockParserOpen block parser that was last matched during the continue phase. This is different from the currently active block parser, as an unmatched block is only closed when a new block is started.This interface is not intended to be implemented by clients.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BlockParsergetBlockParser()BasedSequencegetParagraphContent()Returns the current content of the paragraph if the matched block is a paragraph.MutableDataHoldergetParagraphDataHolder()java.util.List<java.lang.Integer>getParagraphEolLengths()java.util.List<BasedSequence>getParagraphLines()
-
-
-
Method Detail
-
getBlockParser
BlockParser getBlockParser()
- Returns:
- current matched block parser instance
-
getParagraphContent
BasedSequence getParagraphContent()
Returns the current content of the paragraph if the matched block is a paragraph. The content can be multiple lines separated by'\n'.- Returns:
- paragraph content or
null
-
getParagraphLines
java.util.List<BasedSequence> getParagraphLines()
-
getParagraphEolLengths
java.util.List<java.lang.Integer> getParagraphEolLengths()
-
getParagraphDataHolder
MutableDataHolder getParagraphDataHolder()
-
-