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 CharMapperMappedBasedSequence. mapperprivate CharMapperMappedRichSequence. mapperMethods in com.vladsch.flexmark.util.sequence that return CharMapper Modifier and Type Method Description @NotNull CharMapperMappedBasedSequence. getCharMapper()@NotNull CharMapperMappedRichSequence. getCharMapper()@NotNull CharMapperMappedSequence. getCharMapper()Methods in com.vladsch.flexmark.util.sequence with parameters of type CharMapper Modifier and Type Method Description TIRichSequence. appendRangesTo(@NotNull java.lang.StringBuilder out, @Nullable CharMapper charMapper, Range... ranges)Append given ranges of this sequence to string builderTIRichSequence. appendRangesTo(@NotNull java.lang.StringBuilder out, @Nullable CharMapper charMapper, java.lang.Iterable<? extends Range> ranges)TIRichSequenceBase. appendRangesTo(@NotNull java.lang.StringBuilder out, @Nullable CharMapper charMapper, Range... ranges)TIRichSequenceBase. appendRangesTo(@NotNull java.lang.StringBuilder out, @Nullable CharMapper charMapper, java.lang.Iterable<? extends Range> ranges)TIRichSequence. appendTo(@NotNull java.lang.StringBuilder out, @Nullable CharMapper charMapper)TIRichSequence. appendTo(@NotNull java.lang.StringBuilder out, @Nullable CharMapper charMapper, int startIndex)TIRichSequence. appendTo(@NotNull java.lang.StringBuilder out, @Nullable CharMapper charMapper, int startIndex, int endIndex)Append helpersTIRichSequenceBase. appendTo(@NotNull java.lang.StringBuilder out, @Nullable CharMapper charMapper)TIRichSequenceBase. appendTo(@NotNull java.lang.StringBuilder out, @Nullable CharMapper charMapper, int startIndex)TIRichSequenceBase. appendTo(@NotNull java.lang.StringBuilder out, @Nullable CharMapper charMapper, int startIndex, int endIndex)static @NotNull BasedSequenceMappedBasedSequence. mappedOf(@NotNull BasedSequence baseSeq, @NotNull CharMapper mapper)static RichSequenceMappedRichSequence. mappedOf(CharMapper mapper, RichSequence baseSeq)static RichSequenceMappedRichSequence. mappedOf(CharMapper mapper, RichSequence baseSeq, int startIndex)static RichSequenceMappedRichSequence. mappedOf(CharMapper mapper, RichSequence baseSeq, int startIndex, int endIndex)@NotNull BasedSequenceBasedSequenceImpl. toMapped(CharMapper mapper)TIRichSequence. toMapped(CharMapper mapper)@NotNull BasedSequenceMappedBasedSequence. toMapped(CharMapper mapper)@NotNull RichSequenceMappedRichSequence. toMapped(CharMapper mapper)@NotNull RichSequenceRichSequenceImpl. 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 classChangeCase.ToLowerCaseprivate static classChangeCase.ToUpperCaseprivate static classNullEncoder.DecodeNullprivate static classNullEncoder.EncodeNullprivate static classSpaceMapper.FromNonBreakSpaceprivate static classSpaceMapper.FromPredicateprivate static classSpaceMapper.ToNonBreakSpaceFields in com.vladsch.flexmark.util.sequence.mappers declared as CharMapper Modifier and Type Field Description static CharMapperNullEncoder. decodeNullstatic CharMapperNullEncoder. encodeNullstatic CharMapperSpaceMapper. fromNonBreakSpacestatic CharMapperCharMapper. IDENTITYstatic CharMapperChangeCase. toLowerCasestatic CharMapperSpaceMapper. toNonBreakSpacestatic CharMapperChangeCase. toUpperCaseMethods in com.vladsch.flexmark.util.sequence.mappers that return CharMapper Modifier and Type Method Description default CharMapperCharMapper. andThen(CharMapper after)Returns a composed operator that first applies this operator to its input, and then applies theafteroperator to the result.default CharMapperCharMapper. compose(CharMapper before)Returns a composed operator that first applies thebeforeoperator to its input, and then applies this operator to the result.static CharMapperCharMapper. identity()Returns a unary operator that always returns its input argument.static @NotNull CharMapperSpaceMapper. toSpaces(@NotNull CharPredicate predicate)Methods in com.vladsch.flexmark.util.sequence.mappers with parameters of type CharMapper Modifier and Type Method Description default CharMapperCharMapper. andThen(CharMapper after)Returns a composed operator that first applies this operator to its input, and then applies theafteroperator to the result.default CharMapperCharMapper. compose(CharMapper before)Returns a composed operator that first applies thebeforeoperator to its input, and then applies this operator to the result.
-