Uses of Class
com.vladsch.flexmark.util.sequence.LineInfo
-
Packages that use LineInfo Package Description com.vladsch.flexmark.util.format com.vladsch.flexmark.util.html com.vladsch.flexmark.util.sequence -
-
Uses of LineInfo in com.vladsch.flexmark.util.format
Methods in com.vladsch.flexmark.util.format that return LineInfo Modifier and Type Method Description @NotNull LineInfo
MarkdownWriterBase. getLineInfo(int lineIndex)
Methods in com.vladsch.flexmark.util.format that return types with arguments of type LineInfo Modifier and Type Method Description @NotNull java.lang.Iterable<LineInfo>
MarkdownWriterBase. getLinesInfo(int maxTrailingBlankLines, int startLine, int endLine)
@NotNull java.util.Iterator<LineInfo>
MarkdownWriterBase. iterator()
-
Uses of LineInfo in com.vladsch.flexmark.util.html
Methods in com.vladsch.flexmark.util.html that return LineInfo Modifier and Type Method Description @NotNull LineInfo
HtmlAppendableBase. getLineInfo(int lineIndex)
Methods in com.vladsch.flexmark.util.html that return types with arguments of type LineInfo Modifier and Type Method Description @NotNull java.lang.Iterable<LineInfo>
HtmlAppendableBase. getLinesInfo(int maxTrailingBlankLines, int startLine, int endLine)
@NotNull java.util.Iterator<LineInfo>
HtmlAppendableBase. iterator()
-
Uses of LineInfo in com.vladsch.flexmark.util.sequence
Fields in com.vladsch.flexmark.util.sequence declared as LineInfo Modifier and Type Field Description static LineInfo
LineInfo. NULL
Fields in com.vladsch.flexmark.util.sequence with type parameters of type LineInfo Modifier and Type Field Description (package private) java.util.ArrayList<LineInfo>
LineAppendableImpl. lines
Methods in com.vladsch.flexmark.util.sequence that return LineInfo Modifier and Type Method Description static @NotNull LineInfo
LineInfo. create(@NotNull LineInfo prevInfo, @NotNull LineInfo info)
static @NotNull LineInfo
LineInfo. create(@NotNull java.lang.CharSequence line, int prefixLength, int textLength, int length, boolean isBlankPrefix, boolean isBlankText, @NotNull LineInfo.Preformatted preformatted)
static @NotNull LineInfo
LineInfo. create(@NotNull java.lang.CharSequence line, @NotNull LineInfo prevInfo, int prefixLength, int textLength, int length, boolean isBlankPrefix, boolean isBlankText, @NotNull LineInfo.Preformatted preformatted)
private LineInfo
LineAppendableImpl. createLineInfo(int lineIndex, @NotNull java.lang.CharSequence prefix, @NotNull java.lang.CharSequence content)
default @NotNull LineInfo
LineAppendable. get(int lineIndex)
Kotlin index operator@NotNull LineInfo
LineAppendableImpl.IndexedLineInfoProxy. get(int index)
(package private) @NotNull LineInfo
LineAppendableImpl. getLastLineInfo()
@NotNull LineInfo
LineAppendable. getLineInfo(int lineIndex)
Get Line information at given line index@NotNull LineInfo
LineAppendableImpl. getLineInfo(int lineIndex)
private LineInfo
LineAppendableImpl. getLineRange(int start, int end, java.lang.CharSequence prefix)
Methods in com.vladsch.flexmark.util.sequence that return types with arguments of type LineInfo Modifier and Type Method Description default @NotNull java.lang.Iterable<LineInfo>
LineAppendable. getLinesInfo()
default @NotNull java.lang.Iterable<LineInfo>
LineAppendable. getLinesInfo(int maxTrailingBlankLines)
@NotNull java.lang.Iterable<LineInfo>
LineAppendable. getLinesInfo(int maxTrailingBlankLines, int startLine, int endLine)
Full line iterator with line info@NotNull java.lang.Iterable<LineInfo>
LineAppendableImpl. getLinesInfo(int maxTrailingBlankLines, int startLine, int endLine)
@NotNull java.util.Iterator<LineInfo>
LineAppendable. iterator()
Full line iterator NOTE: will not issue line() to terminate any unterminated lines before iteration and will not include unterminated lines in iteration@NotNull java.util.Iterator<LineInfo>
LineAppendableImpl. iterator()
Methods in com.vladsch.flexmark.util.sequence with parameters of type LineInfo Modifier and Type Method Description static @NotNull LineInfo
LineInfo. create(@NotNull LineInfo prevInfo, @NotNull LineInfo info)
static @NotNull LineInfo
LineInfo. create(@NotNull java.lang.CharSequence line, @NotNull LineInfo prevInfo, int prefixLength, int textLength, int length, boolean isBlankPrefix, boolean isBlankText, @NotNull LineInfo.Preformatted preformatted)
boolean
LineInfo. needAggregateUpdate(LineInfo other)
See if replacing this line info with another requires updating all following line info because of aggregation changevoid
LineAppendableImpl.IndexedLineInfoProxy. set(int index, @NotNull LineInfo item)
-