Uses of Interface
com.vladsch.flexmark.util.sequence.mappers.CharMapper
-
Packages that use CharMapper Package Description com.vladsch.flexmark.util.sequence com.vladsch.flexmark.util.sequence.mappers -
-
Uses of CharMapper in com.vladsch.flexmark.util.sequence
Fields in com.vladsch.flexmark.util.sequence declared as CharMapper Modifier and Type Field Description private CharMapper
MappedBasedSequence. mapper
private CharMapper
MappedRichSequence. mapper
Methods in com.vladsch.flexmark.util.sequence that return CharMapper Modifier and Type Method Description @NotNull CharMapper
MappedBasedSequence. getCharMapper()
@NotNull CharMapper
MappedRichSequence. getCharMapper()
@NotNull CharMapper
MappedSequence. getCharMapper()
Methods in com.vladsch.flexmark.util.sequence with parameters of type CharMapper Modifier and Type Method Description T
IRichSequence. appendRangesTo(@NotNull java.lang.StringBuilder out, @Nullable CharMapper charMapper, Range... ranges)
Append given ranges of this sequence to string builderT
IRichSequence. appendRangesTo(@NotNull java.lang.StringBuilder out, @Nullable CharMapper charMapper, java.lang.Iterable<? extends Range> ranges)
T
IRichSequenceBase. appendRangesTo(@NotNull java.lang.StringBuilder out, @Nullable CharMapper charMapper, Range... ranges)
T
IRichSequenceBase. appendRangesTo(@NotNull java.lang.StringBuilder out, @Nullable CharMapper charMapper, java.lang.Iterable<? extends Range> ranges)
T
IRichSequence. appendTo(@NotNull java.lang.StringBuilder out, @Nullable CharMapper charMapper)
T
IRichSequence. appendTo(@NotNull java.lang.StringBuilder out, @Nullable CharMapper charMapper, int startIndex)
T
IRichSequence. appendTo(@NotNull java.lang.StringBuilder out, @Nullable CharMapper charMapper, int startIndex, int endIndex)
Append helpersT
IRichSequenceBase. appendTo(@NotNull java.lang.StringBuilder out, @Nullable CharMapper charMapper)
T
IRichSequenceBase. appendTo(@NotNull java.lang.StringBuilder out, @Nullable CharMapper charMapper, int startIndex)
T
IRichSequenceBase. appendTo(@NotNull java.lang.StringBuilder out, @Nullable CharMapper charMapper, int startIndex, int endIndex)
static @NotNull BasedSequence
MappedBasedSequence. mappedOf(@NotNull BasedSequence baseSeq, @NotNull CharMapper mapper)
static RichSequence
MappedRichSequence. mappedOf(CharMapper mapper, RichSequence baseSeq)
static RichSequence
MappedRichSequence. mappedOf(CharMapper mapper, RichSequence baseSeq, int startIndex)
static RichSequence
MappedRichSequence. mappedOf(CharMapper mapper, RichSequence baseSeq, int startIndex, int endIndex)
@NotNull BasedSequence
BasedSequenceImpl. toMapped(CharMapper mapper)
T
IRichSequence. toMapped(CharMapper mapper)
@NotNull BasedSequence
MappedBasedSequence. toMapped(CharMapper mapper)
@NotNull RichSequence
MappedRichSequence. toMapped(CharMapper mapper)
@NotNull RichSequence
RichSequenceImpl. toMapped(CharMapper mapper)
Constructors in com.vladsch.flexmark.util.sequence with parameters of type CharMapper Constructor Description MappedBasedSequence(BasedSequence baseSeq, CharMapper mapper)
MappedRichSequence(CharMapper mapper, RichSequence baseSeq)
-
Uses of CharMapper in com.vladsch.flexmark.util.sequence.mappers
Classes in com.vladsch.flexmark.util.sequence.mappers that implement CharMapper Modifier and Type Class Description private static class
ChangeCase.ToLowerCase
private static class
ChangeCase.ToUpperCase
private static class
NullEncoder.DecodeNull
private static class
NullEncoder.EncodeNull
private static class
SpaceMapper.FromNonBreakSpace
private static class
SpaceMapper.FromPredicate
private static class
SpaceMapper.ToNonBreakSpace
Fields in com.vladsch.flexmark.util.sequence.mappers declared as CharMapper Modifier and Type Field Description static CharMapper
NullEncoder. decodeNull
static CharMapper
NullEncoder. encodeNull
static CharMapper
SpaceMapper. fromNonBreakSpace
static CharMapper
CharMapper. IDENTITY
static CharMapper
ChangeCase. toLowerCase
static CharMapper
SpaceMapper. toNonBreakSpace
static CharMapper
ChangeCase. toUpperCase
Methods in com.vladsch.flexmark.util.sequence.mappers that return CharMapper Modifier and Type Method Description default CharMapper
CharMapper. andThen(CharMapper after)
Returns a composed operator that first applies this operator to its input, and then applies theafter
operator to the result.default CharMapper
CharMapper. compose(CharMapper before)
Returns a composed operator that first applies thebefore
operator to its input, and then applies this operator to the result.static CharMapper
CharMapper. identity()
Returns a unary operator that always returns its input argument.static @NotNull CharMapper
SpaceMapper. toSpaces(@NotNull CharPredicate predicate)
Methods in com.vladsch.flexmark.util.sequence.mappers with parameters of type CharMapper Modifier and Type Method Description default CharMapper
CharMapper. andThen(CharMapper after)
Returns a composed operator that first applies this operator to its input, and then applies theafter
operator to the result.default CharMapper
CharMapper. compose(CharMapper before)
Returns a composed operator that first applies thebefore
operator to its input, and then applies this operator to the result.
-