Uses of Interface
com.vladsch.flexmark.util.misc.CharPredicate
Packages that use CharPredicate
Package
Description
AST node types (see
Node
) and visitors (see NodeVisitor
)HTML rendering (see
HtmlRenderer
)-
Uses of CharPredicate in com.vladsch.flexmark.ast
Methods in com.vladsch.flexmark.ast with parameters of type CharPredicateModifier and TypeMethodDescriptionFencedCodeBlock.getInfoDelimitedByAny
(CharPredicate delimiters) -
Uses of CharPredicate in com.vladsch.flexmark.ext.attributes
Fields in com.vladsch.flexmark.ext.attributes declared as CharPredicateModifier and TypeFieldDescription(package private) static final CharPredicate
AttributeValueQuotes.P_DOUBLE_QUOTES
(package private) static final CharPredicate
AttributeValueQuotes.P_SINGLE_QUOTES
(package private) static final CharPredicate
AttributeValueQuotes.P_SPACES_OR_QUOTES
-
Uses of CharPredicate in com.vladsch.flexmark.ext.gitlab.internal
Fields in com.vladsch.flexmark.ext.gitlab.internal declared as CharPredicateModifier and TypeFieldDescriptionfinal CharPredicate
GitLabOptions.blockInfoDelimiterSet
Deprecated. -
Uses of CharPredicate in com.vladsch.flexmark.formatter
Fields in com.vladsch.flexmark.formatter declared as CharPredicateModifier and TypeFieldDescriptionprivate final CharPredicate
Formatter.MainNodeFormatter.blockQuoteLikePredicate
Methods in com.vladsch.flexmark.formatter that return CharPredicateModifier and TypeMethodDescription@NotNull CharPredicate
Formatter.MainNodeFormatter.getBlockQuoteLikePrefixPredicate()
@NotNull CharPredicate
Formatter.MainNodeFormatter.SubNodeFormatter.getBlockQuoteLikePrefixPredicate()
@NotNull CharPredicate
NodeFormatterContext.getBlockQuoteLikePrefixPredicate()
-
Uses of CharPredicate in com.vladsch.flexmark.html
Fields in com.vladsch.flexmark.html declared as CharPredicate -
Uses of CharPredicate in com.vladsch.flexmark.parser.core
Fields in com.vladsch.flexmark.parser.core declared as CharPredicateModifier and TypeFieldDescription(package private) static final CharPredicate
ListBlockParser.ListItemLeadInHandler.ORDERED_DELIM_DOT
(package private) static final CharPredicate
ListBlockParser.ListItemLeadInHandler.ORDERED_DELIM_DOT_PARENS
(package private) final CharPredicate
ListBlockParser.ListItemLeadInHandler.orderedDelims
-
Uses of CharPredicate in com.vladsch.flexmark.test.util
Fields in com.vladsch.flexmark.test.util declared as CharPredicateModifier and TypeFieldDescriptionstatic final @NotNull CharPredicate
TestUtils.CARET_PREDICATE
static final @NotNull CharPredicate
TestUtils.MARKUP_PREDICATE
-
Uses of CharPredicate in com.vladsch.flexmark.util.format
Fields in com.vladsch.flexmark.util.format declared as CharPredicateModifier and TypeFieldDescriptionstatic final CharPredicate
MarkdownTable.COLON_TRIM_CHARS
static final CharPredicate
TableFormatOptions.INTELLIJ_DUMMY_IDENTIFIER_SET
Methods in com.vladsch.flexmark.util.format with parameters of type CharPredicateModifier and TypeMethodDescriptiondefault int
CharWidthProvider.getStringWidth
(@NotNull CharSequence chars, @NotNull CharPredicate zeroWidthChars) -
Uses of CharPredicate in com.vladsch.flexmark.util.misc
Fields in com.vladsch.flexmark.util.misc declared as CharPredicateModifier and TypeFieldDescriptionstatic final CharPredicate
CharPredicate.ALL
static final CharPredicate
CharPredicate.ANY_EOL
static final CharPredicate
CharPredicate.ANY_EOL_NUL
static final CharPredicate
CharPredicate.BACKSLASH
static final CharPredicate
CharPredicate.BINARY_DIGITS
static final CharPredicate
CharPredicate.BLANKSPACE
static final CharPredicate
CharPredicate.DECIMAL_DIGITS
static final CharPredicate
CharPredicate.EOL
static final CharPredicate
CharPredicate.FALSE
Deprecated.static final CharPredicate
CharPredicate.HASH
static final CharPredicate
CharPredicate.HEXADECIMAL_DIGITS
static final CharPredicate
CharPredicate.LINE_SEP
static final CharPredicate
CharPredicate.NONE
static final CharPredicate
CharPredicate.OCTAL_DIGITS
static final CharPredicate
CharPredicate.SLASH
static final CharPredicate
CharPredicate.SPACE
static final CharPredicate
CharPredicate.SPACE_ANY_EOL
static final CharPredicate
CharPredicate.SPACE_EOL
static final CharPredicate
CharPredicate.SPACE_TAB
static final CharPredicate
CharPredicate.SPACE_TAB_EOL
static final CharPredicate
CharPredicate.SPACE_TAB_LINE_SEP
static final CharPredicate
CharPredicate.SPACE_TAB_NBSP
static final CharPredicate
CharPredicate.SPACE_TAB_NBSP_EOL
static final CharPredicate
CharPredicate.SPACE_TAB_NBSP_LINE_SEP
static final CharPredicate
CharPredicate.SPACE_TAB_NUL
static final CharPredicate
CharPredicate.SPACE_TAB_OR_NUL
Deprecated.static final CharPredicate
CharPredicate.TAB
static final CharPredicate
CharPredicate.TRUE
Deprecated.static final CharPredicate
CharPredicate.WHITESPACE
static final CharPredicate
CharPredicate.WHITESPACE_NBSP
static final CharPredicate
CharPredicate.WHITESPACE_NBSP_OR_NUL
static final CharPredicate
CharPredicate.WHITESPACE_OR_NUL
Methods in com.vladsch.flexmark.util.misc that return CharPredicateModifier and TypeMethodDescriptiondefault @NotNull CharPredicate
CharPredicate.and
(@NotNull CharPredicate other) Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.static @NotNull CharPredicate
CharPredicate.anyOf
(char... chars) static @NotNull CharPredicate
CharPredicate.anyOf
(@NotNull CharSequence chars) default @NotNull CharPredicate
CharPredicate.negate()
Returns a predicate that represents the logical negation of this predicate.default @NotNull CharPredicate
CharPredicate.or
(@NotNull CharPredicate other) Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another.static @NotNull CharPredicate
CharPredicate.standardOrAnyOf
(char c1) static @NotNull CharPredicate
CharPredicate.standardOrAnyOf
(char c1, char c2) static @NotNull CharPredicate
CharPredicate.standardOrAnyOf
(char c1, char c2, char c3) static @NotNull CharPredicate
CharPredicate.standardOrAnyOf
(char c1, char c2, char c3, char c4) Methods in com.vladsch.flexmark.util.misc with parameters of type CharPredicateModifier and TypeMethodDescriptiondefault @NotNull CharPredicate
CharPredicate.and
(@NotNull CharPredicate other) Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.default @NotNull CharPredicate
CharPredicate.or
(@NotNull CharPredicate other) Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another. -
Uses of CharPredicate in com.vladsch.flexmark.util.sequence
Fields in com.vladsch.flexmark.util.sequence declared as CharPredicateModifier and TypeFieldDescriptionstatic final @NotNull CharPredicate
Escaping.AMP_BACKSLASH_SET
static final CharPredicate
SequenceUtils.ANY_EOL_SET
Deprecated.static final CharPredicate
SequenceUtils.BACKSLASH_SET
Deprecated.static final CharPredicate
SequenceUtils.DECIMAL_DIGITS
Deprecated.static final CharPredicate
SequenceUtils.EOL_SET
Deprecated.static final CharPredicate
SequenceUtils.HASH_SET
Deprecated.static final CharPredicate
SequenceUtils.HEXADECIMAL_DIGITS
Deprecated.static final CharPredicate
SequenceUtils.OCTAL_DIGITS
Deprecated.static final CharPredicate
SequenceUtils.SPACE_EOL_SET
Deprecated.static final CharPredicate
SequenceUtils.SPACE_SET
Deprecated.use CharPredicate fields directlystatic final CharPredicate
SequenceUtils.SPACE_TAB_EOL_SET
Deprecated.static final CharPredicate
SequenceUtils.SPACE_TAB_NBSP_SET
Deprecated.static final CharPredicate
SequenceUtils.SPACE_TAB_SET
Deprecated.static final CharPredicate
SequenceUtils.TAB_SET
Deprecated.static final CharPredicate
SequenceUtils.US_SET
Deprecated.static final CharPredicate
SequenceUtils.WHITESPACE_NBSP_SET
Deprecated.static final CharPredicate
SequenceUtils.WHITESPACE_SET
Deprecated.Methods in com.vladsch.flexmark.util.sequence with parameters of type CharPredicateModifier and TypeMethodDescriptionIRichSequence.blankLinesRemovedRanges
(@NotNull CharPredicate eolChars, int fromIndex, int endIndex) IRichSequenceBase.blankLinesRemovedRanges
(@NotNull CharPredicate eolChars, int fromIndex, int endIndex) SequenceUtils.blankLinesRemovedRanges
(@NotNull CharSequence thizz, @NotNull CharPredicate eolChars, int fromIndex, int endIndex) static int
SequenceUtils.compare
(@Nullable CharSequence o1, @Nullable CharSequence o2, boolean ignoreCase, @Nullable CharPredicate ignoreChars) static boolean
SequenceUtils.containsAny
(@NotNull CharSequence thizz, @NotNull CharPredicate s) static boolean
SequenceUtils.containsAny
(@NotNull CharSequence thizz, @NotNull CharPredicate s, int index) static boolean
SequenceUtils.containsAnyNot
(@NotNull CharSequence thizz, @NotNull CharPredicate s) static boolean
SequenceUtils.containsAnyNot
(@NotNull CharSequence thizz, @NotNull CharPredicate s, int fromIndex) static boolean
SequenceUtils.containsAnyNot
(@NotNull CharSequence thizz, @NotNull CharPredicate s, int fromIndex, int endIndex) boolean
BasedSequence.containsOnlyIn
(@NotNull CharPredicate charSet) Test for line contains only characters from the setboolean
BasedSequenceImpl.containsOnlyIn
(@NotNull CharPredicate charSet) boolean
BasedSequence.containsOnlyNotIn
(@NotNull CharPredicate charSet) Test for line containing only characters not in the setboolean
BasedSequenceImpl.containsOnlyNotIn
(@NotNull CharPredicate charSet) boolean
BasedSequence.containsSomeIn
(@NotNull CharPredicate charSet) Test for line containing some of the characters in the setboolean
BasedSequenceImpl.containsSomeIn
(@NotNull CharPredicate charSet) boolean
BasedSequence.containsSomeNotIn
(@NotNull CharPredicate charSet) Test for line containing some characters not in the setboolean
BasedSequenceImpl.containsSomeNotIn
(@NotNull CharPredicate charSet) int
IRichSequence.countLeading
(@NotNull CharPredicate chars) Count leading/trailing characters of this sequenceint
IRichSequence.countLeading
(@NotNull CharPredicate chars, int startIndex) int
IRichSequence.countLeading
(@NotNull CharPredicate chars, int startIndex, int endIndex) final int
IRichSequenceBase.countLeading
(@NotNull CharPredicate chars) final int
IRichSequenceBase.countLeading
(@NotNull CharPredicate chars, int fromIndex) final int
IRichSequenceBase.countLeading
(@NotNull CharPredicate chars, int fromIndex, int endIndex) static int
SequenceUtils.countLeading
(@NotNull CharSequence thizz, @NotNull CharPredicate chars) static int
SequenceUtils.countLeading
(@NotNull CharSequence thizz, @NotNull CharPredicate chars, int fromIndex) static int
SequenceUtils.countLeading
(@NotNull CharSequence thizz, @NotNull CharPredicate chars, int fromIndex, int endIndex) int
IRichSequence.countLeadingColumns
(int startColumn, @NotNull CharPredicate chars) Count column of indent given by chars in the set in this sequence, expanding tabs to 4th columnfinal int
IRichSequenceBase.countLeadingColumns
(int startColumn, @NotNull CharPredicate chars) static int
SequenceUtils.countLeadingColumns
(@NotNull CharSequence thizz, int startColumn, @NotNull CharPredicate chars) int
IRichSequence.countLeadingNot
(@NotNull CharPredicate chars) int
IRichSequence.countLeadingNot
(@NotNull CharPredicate chars, int startIndex) int
IRichSequence.countLeadingNot
(@NotNull CharPredicate chars, int startIndex, int endIndex) final int
IRichSequenceBase.countLeadingNot
(@NotNull CharPredicate chars) final int
IRichSequenceBase.countLeadingNot
(@NotNull CharPredicate chars, int fromIndex) final int
IRichSequenceBase.countLeadingNot
(@NotNull CharPredicate chars, int startIndex, int endIndex) static int
SequenceUtils.countLeadingNot
(@NotNull CharSequence thizz, @NotNull CharPredicate chars) static int
SequenceUtils.countLeadingNot
(@NotNull CharSequence thizz, @NotNull CharPredicate chars, int fromIndex) static int
SequenceUtils.countLeadingNot
(@NotNull CharSequence thizz, @NotNull CharPredicate chars, int startIndex, int endIndex) int
IRichSequence.countOfAny
(@NotNull CharPredicate chars) int
IRichSequence.countOfAny
(@NotNull CharPredicate chars, int startIndex) int
IRichSequence.countOfAny
(@NotNull CharPredicate chars, int startIndex, int endIndex) final int
IRichSequenceBase.countOfAny
(@NotNull CharPredicate chars) final int
IRichSequenceBase.countOfAny
(@NotNull CharPredicate chars, int fromIndex) final int
IRichSequenceBase.countOfAny
(@NotNull CharPredicate s, int fromIndex, int endIndex) static int
SequenceUtils.countOfAny
(@NotNull CharSequence thizz, @NotNull CharPredicate chars) static int
SequenceUtils.countOfAny
(@NotNull CharSequence thizz, @NotNull CharPredicate chars, int fromIndex) static int
SequenceUtils.countOfAny
(@NotNull CharSequence thizz, @NotNull CharPredicate s, int fromIndex, int endIndex) int
IRichSequence.countOfAnyNot
(@NotNull CharPredicate chars) int
IRichSequence.countOfAnyNot
(@NotNull CharPredicate chars, int startIndex) int
IRichSequence.countOfAnyNot
(@NotNull CharPredicate chars, int startIndex, int endIndex) final int
IRichSequenceBase.countOfAnyNot
(@NotNull CharPredicate chars) final int
IRichSequenceBase.countOfAnyNot
(@NotNull CharPredicate chars, int fromIndex) final int
IRichSequenceBase.countOfAnyNot
(@NotNull CharPredicate chars, int startIndex, int endIndex) static int
SequenceUtils.countOfAnyNot
(@NotNull CharSequence thizz, @NotNull CharPredicate chars) static int
SequenceUtils.countOfAnyNot
(@NotNull CharSequence thizz, @NotNull CharPredicate chars, int fromIndex) static int
SequenceUtils.countOfAnyNot
(@NotNull CharSequence thizz, @NotNull CharPredicate chars, int fromIndex, int endIndex) int
IRichSequence.countTrailing
(@NotNull CharPredicate chars) int
IRichSequence.countTrailing
(@NotNull CharPredicate chars, int startIndex) int
IRichSequence.countTrailing
(@NotNull CharPredicate chars, int startIndex, int endIndex) final int
IRichSequenceBase.countTrailing
(@NotNull CharPredicate chars) final int
IRichSequenceBase.countTrailing
(@NotNull CharPredicate chars, int fromIndex) final int
IRichSequenceBase.countTrailing
(@NotNull CharPredicate chars, int startIndex, int fromIndex) static int
SequenceUtils.countTrailing
(@NotNull CharSequence thizz, @NotNull CharPredicate chars) static int
SequenceUtils.countTrailing
(@NotNull CharSequence thizz, @NotNull CharPredicate chars, int fromIndex) static int
SequenceUtils.countTrailing
(@NotNull CharSequence thizz, @NotNull CharPredicate chars, int startIndex, int fromIndex) int
IRichSequence.countTrailingNot
(@NotNull CharPredicate chars) int
IRichSequence.countTrailingNot
(@NotNull CharPredicate chars, int startIndex) int
IRichSequence.countTrailingNot
(@NotNull CharPredicate chars, int startIndex, int endIndex) final int
IRichSequenceBase.countTrailingNot
(@NotNull CharPredicate chars) final int
IRichSequenceBase.countTrailingNot
(@NotNull CharPredicate chars, int fromIndex) final int
IRichSequenceBase.countTrailingNot
(@NotNull CharPredicate chars, int startIndex, int endIndex) static int
SequenceUtils.countTrailingNot
(@NotNull CharSequence thizz, @NotNull CharPredicate chars) static int
SequenceUtils.countTrailingNot
(@NotNull CharSequence thizz, @NotNull CharPredicate chars, int fromIndex) static int
SequenceUtils.countTrailingNot
(@NotNull CharSequence thizz, @NotNull CharPredicate chars, int startIndex, int endIndex) int
IRichSequence.endOfDelimitedByAny
(@NotNull CharPredicate s, int index) final int
IRichSequenceBase.endOfDelimitedByAny
(@NotNull CharPredicate s, int index) static int
SequenceUtils.endOfDelimitedByAny
(@NotNull CharSequence thizz, @NotNull CharPredicate s, int index) int
IRichSequence.endOfDelimitedByAnyNot
(@NotNull CharPredicate s, int index) final int
IRichSequenceBase.endOfDelimitedByAnyNot
(@NotNull CharPredicate s, int index) static int
SequenceUtils.endOfDelimitedByAnyNot
(@NotNull CharSequence thizz, @NotNull CharPredicate s, int index) boolean
IRichSequence.endsWith
(@NotNull CharPredicate chars) final boolean
IRichSequenceBase.endsWith
(@NotNull CharPredicate chars) static boolean
SequenceUtils.endsWith
(@NotNull CharSequence thizz, @NotNull CharPredicate chars) @NotNull BasedSequence
BasedSequence.extendByAny
(@NotNull CharPredicate charSet) @NotNull BasedSequence
BasedSequence.extendByAny
(@NotNull CharPredicate charSet, int maxCount) Extend this based sequence to include characters from underlying based sequence@NotNull BasedSequence
BasedSequenceImpl.extendByAny
(@NotNull CharPredicate charSet) @NotNull BasedSequence
BasedSequenceImpl.extendByAny
(@NotNull CharPredicate charSet, int maxCount) @NotNull BasedSequence
BasedSequence.extendByAnyNot
(@NotNull CharPredicate charSet) @NotNull BasedSequence
BasedSequence.extendByAnyNot
(@NotNull CharPredicate charSet, int maxCount) Extend this based sequence to include characters from underlying based sequence not in character set@NotNull BasedSequence
BasedSequenceImpl.extendByAnyNot
(@NotNull CharPredicate charSet) @NotNull BasedSequence
BasedSequenceImpl.extendByAnyNot
(@NotNull CharPredicate charSet, int maxCount) @NotNull BasedSequence
BasedSequence.extendByOneOfAny
(@NotNull CharPredicate charSet) @NotNull BasedSequence
BasedSequenceImpl.extendByOneOfAny
(@NotNull CharPredicate charSet) @NotNull BasedSequence
BasedSequence.extendByOneOfAnyNot
(@NotNull CharPredicate charSet) @NotNull BasedSequence
BasedSequenceImpl.extendByOneOfAnyNot
(@NotNull CharPredicate charSet) default @NotNull BasedSequence
BasedSequence.extendToAny
(@NotNull CharPredicate charSet) Deprecated.default @NotNull BasedSequence
BasedSequence.extendToAny
(@NotNull CharPredicate charSet, int maxCount) Deprecated.@NotNull BasedSequence
BasedSequence.extendToEndOfLine
(@NotNull CharPredicate eolChars) @NotNull BasedSequence
BasedSequence.extendToEndOfLine
(@NotNull CharPredicate eolChars, boolean includeEol) Extend in contained based sequencefinal @NotNull BasedSequence
BasedSequenceImpl.extendToEndOfLine
(@NotNull CharPredicate eolChars) final @NotNull BasedSequence
BasedSequenceImpl.extendToEndOfLine
(@NotNull CharPredicate eolChars, boolean includeEol) @NotNull BasedSequence
BasedSequence.extendToStartOfLine
(@NotNull CharPredicate eolChars) @NotNull BasedSequence
BasedSequence.extendToStartOfLine
(@NotNull CharPredicate eolChars, boolean includeEol) Extend in contained based sequencefinal @NotNull BasedSequence
BasedSequenceImpl.extendToStartOfLine
(@NotNull CharPredicate eolChars) @NotNull BasedSequence
BasedSequenceImpl.extendToStartOfLine
(@NotNull CharPredicate eolChars, boolean includeEol) int
IRichSequence.indexOfAny
(@NotNull CharPredicate s) int
IRichSequence.indexOfAny
(@NotNull CharPredicate s, int fromIndex) int
IRichSequence.indexOfAny
(@NotNull CharPredicate s, int fromIndex, int endIndex) final int
IRichSequenceBase.indexOfAny
(@NotNull CharPredicate s) final int
IRichSequenceBase.indexOfAny
(@NotNull CharPredicate s, int index) final int
IRichSequenceBase.indexOfAny
(@NotNull CharPredicate s, int fromIndex, int endIndex) static int
SequenceUtils.indexOfAny
(@NotNull CharSequence thizz, @NotNull CharPredicate s) static int
SequenceUtils.indexOfAny
(@NotNull CharSequence thizz, @NotNull CharPredicate s, int index) static int
SequenceUtils.indexOfAny
(@NotNull CharSequence thizz, @NotNull CharPredicate s, int fromIndex, int endIndex) int
IRichSequence.indexOfAnyNot
(@NotNull CharPredicate s) int
IRichSequence.indexOfAnyNot
(@NotNull CharPredicate s, int fromIndex) int
IRichSequence.indexOfAnyNot
(@NotNull CharPredicate s, int fromIndex, int endIndex) final int
IRichSequenceBase.indexOfAnyNot
(@NotNull CharPredicate s) final int
IRichSequenceBase.indexOfAnyNot
(@NotNull CharPredicate s, int fromIndex) final int
IRichSequenceBase.indexOfAnyNot
(@NotNull CharPredicate s, int fromIndex, int endIndex) static int
SequenceUtils.indexOfAnyNot
(@NotNull CharSequence thizz, @NotNull CharPredicate s) static int
SequenceUtils.indexOfAnyNot
(@NotNull CharSequence thizz, @NotNull CharPredicate s, int fromIndex) static int
SequenceUtils.indexOfAnyNot
(@NotNull CharSequence thizz, @NotNull CharPredicate s, int fromIndex, int endIndex) boolean
BasedSequence.isBaseCharAt
(int index, @NotNull CharPredicate predicate) Safe, if index out of range but based sequence has characters will return those, else returns '\0'boolean
BasedSequenceImpl.isBaseCharAt
(int index, @NotNull CharPredicate predicate) boolean
IRichSequence.isCharAt
(int index, @NotNull CharPredicate predicate) Safe, if index out of range returns '\0'boolean
IRichSequenceBase.isCharAt
(int index, @NotNull CharPredicate predicate) int
IRichSequence.lastIndexOfAny
(@NotNull CharPredicate s) int
IRichSequence.lastIndexOfAny
(@NotNull CharPredicate s, int fromIndex) int
IRichSequence.lastIndexOfAny
(@NotNull CharPredicate s, int startIndex, int fromIndex) final int
IRichSequenceBase.lastIndexOfAny
(@NotNull CharPredicate s) final int
IRichSequenceBase.lastIndexOfAny
(@NotNull CharPredicate s, int fromIndex) final int
IRichSequenceBase.lastIndexOfAny
(@NotNull CharPredicate s, int startIndex, int fromIndex) static int
SequenceUtils.lastIndexOfAny
(@NotNull CharSequence thizz, @NotNull CharPredicate s) static int
SequenceUtils.lastIndexOfAny
(@NotNull CharSequence thizz, @NotNull CharPredicate s, int fromIndex) static int
SequenceUtils.lastIndexOfAny
(@NotNull CharSequence thizz, @NotNull CharPredicate s, int startIndex, int fromIndex) int
IRichSequence.lastIndexOfAnyNot
(@NotNull CharPredicate s) int
IRichSequence.lastIndexOfAnyNot
(@NotNull CharPredicate s, int fromIndex) int
IRichSequence.lastIndexOfAnyNot
(@NotNull CharPredicate s, int startIndex, int fromIndex) final int
IRichSequenceBase.lastIndexOfAnyNot
(@NotNull CharPredicate s) final int
IRichSequenceBase.lastIndexOfAnyNot
(@NotNull CharPredicate s, int fromIndex) final int
IRichSequenceBase.lastIndexOfAnyNot
(@NotNull CharPredicate s, int startIndex, int fromIndex) static int
SequenceUtils.lastIndexOfAnyNot
(@NotNull CharSequence thizz, @NotNull CharPredicate s) static int
SequenceUtils.lastIndexOfAnyNot
(@NotNull CharSequence thizz, @NotNull CharPredicate s, int fromIndex) static int
SequenceUtils.lastIndexOfAnyNot
(@NotNull CharSequence thizz, @NotNull CharPredicate s, int startIndex, int fromIndex) @NotNull Range
IRichSequence.leadingBlankLinesRange
(@NotNull CharPredicate eolChars, int fromIndex, int endIndex) Get Range of leading blank lines at given index offsets in sequencefinal @NotNull Range
IRichSequenceBase.leadingBlankLinesRange
(@NotNull CharPredicate eolChars, int fromIndex, int endIndex) static @NotNull Range
SequenceUtils.leadingBlankLinesRange
(@NotNull CharSequence thizz, @NotNull CharPredicate eolChars, int fromIndex, int endIndex) T[]
IRichSequence.split
(@NotNull CharSequence delimiter, boolean includeDelims, @Nullable CharPredicate trimChars) T[]
IRichSequence.split
(@NotNull CharSequence delimiter, int limit, boolean includeDelims, @Nullable CharPredicate trimChars) T[]
IRichSequence.split
(@NotNull CharSequence delimiter, int limit, int flags, @Nullable CharPredicate trimChars) final T[]
IRichSequenceBase.split
(@NotNull CharSequence delimiter, boolean includeDelims, @Nullable CharPredicate trimChars) final T[]
IRichSequenceBase.split
(@NotNull CharSequence delimiter, int limit, boolean includeDelims, @Nullable CharPredicate trimChars) final T[]
IRichSequenceBase.split
(@NotNull CharSequence delimiter, int limit, int flags, @Nullable CharPredicate trimChars) static <T extends CharSequence>
T[]SequenceUtils.split
(T thizz, T[] emptyArray, @NotNull CharSequence delimiter, boolean includeDelims, @Nullable CharPredicate trimChars) static <T extends CharSequence>
T[]SequenceUtils.split
(T thizz, T[] emptyArray, @NotNull CharSequence delimiter, int limit, boolean includeDelims, @Nullable CharPredicate trimChars) static <T extends CharSequence>
T[]SequenceUtils.split
(T thizz, T[] emptyArray, @NotNull CharSequence delimiter, int limit, int flags, @Nullable CharPredicate trimChars) IRichSequence.splitList
(@NotNull CharSequence delimiter, boolean includeDelims, @Nullable CharPredicate trimChars) IRichSequence.splitList
(@NotNull CharSequence delimiter, int limit, boolean includeDelims, @Nullable CharPredicate trimChars) Split helpers based on delimiter character sets contained in CharPredicateIRichSequence.splitList
(@NotNull CharSequence delimiter, int limit, int flags, @Nullable CharPredicate trimChars) Split helpers based on delimiter character sets contained in CharSequenceIRichSequenceBase.splitList
(@NotNull CharSequence delimiter, boolean includeDelims, @Nullable CharPredicate trimChars) IRichSequenceBase.splitList
(@NotNull CharSequence delimiter, int limit, boolean includeDelims, @Nullable CharPredicate trimChars) IRichSequenceBase.splitList
(@NotNull CharSequence delimiter, int limit, int flags, @Nullable CharPredicate trimChars) static <T extends CharSequence>
@NotNull List<T> SequenceUtils.splitList
(T thizz, @NotNull CharSequence delimiter, boolean includeDelims, @Nullable CharPredicate trimChars) static <T extends CharSequence>
@NotNull List<T> SequenceUtils.splitList
(T thizz, @NotNull CharSequence delimiter, int limit, boolean includeDelims, @Nullable CharPredicate trimChars) static <T extends CharSequence>
@NotNull List<T> SequenceUtils.splitList
(T thizz, @NotNull CharSequence delimiter, int limit, int flags, @Nullable CharPredicate trimChars) IRichSequence.splitListEOL
(boolean includeDelims, @Nullable CharPredicate trimChars) IRichSequenceBase.splitListEOL
(boolean includeDelims, @Nullable CharPredicate trimChars) static <T extends CharSequence>
@NotNull List<T> SequenceUtils.splitListEOL
(T thizz, boolean includeDelims, @Nullable CharPredicate trimChars) int
IRichSequence.startOfDelimitedByAny
(@NotNull CharPredicate s, int index) final int
IRichSequenceBase.startOfDelimitedByAny
(@NotNull CharPredicate s, int index) static int
SequenceUtils.startOfDelimitedByAny
(@NotNull CharSequence thizz, @NotNull CharPredicate s, int index) int
IRichSequence.startOfDelimitedByAnyNot
(@NotNull CharPredicate s, int index) final int
IRichSequenceBase.startOfDelimitedByAnyNot
(@NotNull CharPredicate s, int index) static int
SequenceUtils.startOfDelimitedByAnyNot
(@NotNull CharSequence thizz, @NotNull CharPredicate s, int index) boolean
IRichSequence.startsWith
(@NotNull CharPredicate chars) final boolean
IRichSequenceBase.startsWith
(@NotNull CharPredicate chars) static boolean
SequenceUtils.startsWith
(@NotNull CharSequence thizz, @NotNull CharPredicate chars) @NotNull Range
IRichSequence.trailingBlankLinesRange
(CharPredicate eolChars, int startIndex, int fromIndex) Get Range of trailing blank lines at given index offsets in sequencefinal @NotNull Range
IRichSequenceBase.trailingBlankLinesRange
(CharPredicate eolChars, int startIndex, int fromIndex) static @NotNull Range
SequenceUtils.trailingBlankLinesRange
(@NotNull CharSequence thizz, @NotNull CharPredicate eolChars, int startIndex, int fromIndex) IRichSequence.trim
(int keep, @NotNull CharPredicate chars) IRichSequence.trim
(@NotNull CharPredicate chars) final T
IRichSequenceBase.trim
(int keep, @NotNull CharPredicate chars) final T
IRichSequenceBase.trim
(@NotNull CharPredicate chars) static <T extends CharSequence>
TSequenceUtils.trim
(T thizz, int keep, @NotNull CharPredicate chars) static <T extends CharSequence>
TSequenceUtils.trim
(T thizz, @NotNull CharPredicate chars) IRichSequence.trimEnd
(int keep, @NotNull CharPredicate chars) IRichSequence.trimEnd
(@NotNull CharPredicate chars) final T
IRichSequenceBase.trimEnd
(int keep, @NotNull CharPredicate chars) final T
IRichSequenceBase.trimEnd
(@NotNull CharPredicate chars) static <T extends CharSequence>
TSequenceUtils.trimEnd
(T thizz, int keep, @NotNull CharPredicate chars) static <T extends CharSequence>
TSequenceUtils.trimEnd
(T thizz, @NotNull CharPredicate chars) @NotNull Range
IRichSequence.trimEndRange
(int keep, @NotNull CharPredicate chars) @NotNull Range
IRichSequence.trimEndRange
(@NotNull CharPredicate chars) final @NotNull Range
IRichSequenceBase.trimEndRange
(int keep, @NotNull CharPredicate chars) final @NotNull Range
IRichSequenceBase.trimEndRange
(@NotNull CharPredicate chars) static @NotNull Range
SequenceUtils.trimEndRange
(@NotNull CharSequence thizz, int keep, @NotNull CharPredicate chars) static Range
SequenceUtils.trimEndRange
(@NotNull CharSequence thizz, @NotNull CharPredicate chars) IRichSequence.trimmed
(int keep, @NotNull CharPredicate chars) IRichSequence.trimmed
(@NotNull CharPredicate chars) IRichSequenceBase.trimmed
(int keep, @NotNull CharPredicate chars) IRichSequenceBase.trimmed
(@NotNull CharPredicate chars) static <T extends CharSequence>
@NotNull Pair<T, T> SequenceUtils.trimmed
(T thizz, int keep, @NotNull CharPredicate chars) static <T extends CharSequence>
@NotNull Pair<T, T> SequenceUtils.trimmed
(T thizz, @NotNull CharPredicate chars) IRichSequence.trimmedEnd
(int keep, @NotNull CharPredicate chars) IRichSequence.trimmedEnd
(@NotNull CharPredicate chars) final T
IRichSequenceBase.trimmedEnd
(int keep, @NotNull CharPredicate chars) final T
IRichSequenceBase.trimmedEnd
(@NotNull CharPredicate chars) static <T extends CharSequence>
TSequenceUtils.trimmedEnd
(T thizz, int keep, @NotNull CharPredicate chars) static <T extends CharSequence>
TSequenceUtils.trimmedEnd
(T thizz, @NotNull CharPredicate chars) IRichSequence.trimmedStart
(int keep, @NotNull CharPredicate chars) Get the characters Trimmed, Trimmed from start/end of this sequence, characters to trim are passed in the sequence argumentIRichSequence.trimmedStart
(@NotNull CharPredicate chars) final T
IRichSequenceBase.trimmedStart
(int keep, @NotNull CharPredicate chars) final T
IRichSequenceBase.trimmedStart
(@NotNull CharPredicate chars) static <T extends CharSequence>
TSequenceUtils.trimmedStart
(T thizz, int keep, @NotNull CharPredicate chars) static <T extends CharSequence>
TSequenceUtils.trimmedStart
(T thizz, @NotNull CharPredicate chars) @NotNull Range
IRichSequence.trimRange
(int keep, @NotNull CharPredicate chars) @NotNull Range
IRichSequence.trimRange
(@NotNull CharPredicate chars) final @NotNull Range
IRichSequenceBase.trimRange
(int keep, @NotNull CharPredicate chars) final @NotNull Range
IRichSequenceBase.trimRange
(@NotNull CharPredicate chars) static @NotNull Range
SequenceUtils.trimRange
(@NotNull CharSequence thizz, int keep, @NotNull CharPredicate chars) static Range
SequenceUtils.trimRange
(@NotNull CharSequence thizz, @NotNull CharPredicate chars) IRichSequence.trimStart
(int keep, @NotNull CharPredicate chars) Trim, Trim start/end of this sequence, characters to trim are passed in the sequence argumentIRichSequence.trimStart
(@NotNull CharPredicate chars) final T
IRichSequenceBase.trimStart
(int keep, @NotNull CharPredicate chars) final T
IRichSequenceBase.trimStart
(@NotNull CharPredicate chars) static <T extends CharSequence>
TSequenceUtils.trimStart
(T thizz, int keep, @NotNull CharPredicate chars) static <T extends CharSequence>
TSequenceUtils.trimStart
(T thizz, @NotNull CharPredicate chars) @NotNull Range
IRichSequence.trimStartRange
(int keep, @NotNull CharPredicate chars) Range of kept sequence when trim start/end of this sequence is performed, characters to trim are passed in the sequence argument@NotNull Range
IRichSequence.trimStartRange
(@NotNull CharPredicate chars) final @NotNull Range
IRichSequenceBase.trimStartRange
(int keep, @NotNull CharPredicate chars) final @NotNull Range
IRichSequenceBase.trimStartRange
(@NotNull CharPredicate chars) static @NotNull Range
SequenceUtils.trimStartRange
(@NotNull CharSequence thizz, int keep, @NotNull CharPredicate chars) static Range
SequenceUtils.trimStartRange
(@NotNull CharSequence thizz, @NotNull CharPredicate chars) IRichSequence.trimToEndOfLine
(@NotNull CharPredicate eolChars, boolean includeEol, int index) Trim end to end of line containing indexIRichSequenceBase.trimToEndOfLine
(@NotNull CharPredicate eolChars, boolean includeEol, int index) IRichSequence.trimToStartOfLine
(@NotNull CharPredicate eolChars, boolean includeEol, int index) Trim start to start of line containing indexIRichSequenceBase.trimToStartOfLine
(@NotNull CharPredicate eolChars, boolean includeEol, int index) -
Uses of CharPredicate in com.vladsch.flexmark.util.sequence.builder
Methods in com.vladsch.flexmark.util.sequence.builder with parameters of type CharPredicateModifier and TypeMethodDescription@NotNull BasedSequence
SequenceBuilder.toSequence
(@NotNull BasedSequence altSequence, @Nullable CharPredicate trimStart, @Nullable CharPredicate ignoreCharDiff) Construct sequence from this builder using another based sequence which is character identical to this builder's baseSeq@NotNull BasedSequence
SequenceBuilder.toSequenceByIndex
(@NotNull BasedSequence altSequence, @Nullable CharPredicate trimStart, @Nullable CharPredicate ignoreCharDiff) Construct sequence from this builder using another based sequence which is character identical to this builder's baseSeq by length -
Uses of CharPredicate in com.vladsch.flexmark.util.sequence.mappers
Fields in com.vladsch.flexmark.util.sequence.mappers declared as CharPredicateModifier and TypeFieldDescription(package private) final @NotNull CharPredicate
SpaceMapper.FromPredicate.myPredicate
(package private) final CharPredicate
SpecialLeadInCharsHandler.predicate
(package private) final CharPredicate
SpecialLeadInStartsWithCharsHandler.predicate
Methods in com.vladsch.flexmark.util.sequence.mappers with parameters of type CharPredicateModifier and TypeMethodDescriptionstatic @NotNull CharMapper
SpaceMapper.toSpaces
(@NotNull CharPredicate predicate) Constructors in com.vladsch.flexmark.util.sequence.mappers with parameters of type CharPredicateModifierConstructorDescription(package private)
FromPredicate
(@NotNull CharPredicate predicate) protected
SpecialLeadInCharsHandler
(CharPredicate predicate) protected
SpecialLeadInStartsWithCharsHandler
(CharPredicate predicate)
HtmlRendererOptions.languageDelimiterSet
instead