Package com.vladsch.flexmark.util.format
Class MarkdownParagraph.Token
- java.lang.Object
-
- com.vladsch.flexmark.util.format.MarkdownParagraph.Token
-
- Enclosing class:
- MarkdownParagraph
public static class MarkdownParagraph.Token extends Object
-
-
Field Summary
Fields Modifier and Type Field Description booleanisFirstWord@NotNull com.vladsch.flexmark.util.sequence.Rangerange@NotNull MarkdownParagraph.TextTypetype
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static @NotNull MarkdownParagraph.Tokenof(@NotNull MarkdownParagraph.TextType type, int start, int end)static @NotNull MarkdownParagraph.Tokenof(@NotNull MarkdownParagraph.TextType type, int start, int end, boolean isFirstWord)static @NotNull MarkdownParagraph.Tokenof(@NotNull MarkdownParagraph.TextType type, @NotNull com.vladsch.flexmark.util.sequence.Range range)static @NotNull MarkdownParagraph.Tokenof(@NotNull MarkdownParagraph.TextType type, @NotNull com.vladsch.flexmark.util.sequence.Range range, boolean isFirstWord)com.vladsch.flexmark.util.sequence.BasedSequencesubSequence(com.vladsch.flexmark.util.sequence.BasedSequence charSequence)CharSequencesubSequence(CharSequence charSequence)StringtoString()
-
-
-
Field Detail
-
type
@NotNull public final @NotNull MarkdownParagraph.TextType type
-
range
@NotNull public final @NotNull com.vladsch.flexmark.util.sequence.Range range
-
isFirstWord
public final boolean isFirstWord
-
-
Method Detail
-
subSequence
public com.vladsch.flexmark.util.sequence.BasedSequence subSequence(com.vladsch.flexmark.util.sequence.BasedSequence charSequence)
-
subSequence
public CharSequence subSequence(CharSequence charSequence)
-
of
@NotNull public static @NotNull MarkdownParagraph.Token of(@NotNull @NotNull MarkdownParagraph.TextType type, @NotNull @NotNull com.vladsch.flexmark.util.sequence.Range range)
-
of
@NotNull public static @NotNull MarkdownParagraph.Token of(@NotNull @NotNull MarkdownParagraph.TextType type, int start, int end)
-
of
@NotNull public static @NotNull MarkdownParagraph.Token of(@NotNull @NotNull MarkdownParagraph.TextType type, @NotNull @NotNull com.vladsch.flexmark.util.sequence.Range range, boolean isFirstWord)
-
of
@NotNull public static @NotNull MarkdownParagraph.Token of(@NotNull @NotNull MarkdownParagraph.TextType type, int start, int end, boolean isFirstWord)
-
-