| Package | Description |
|---|---|
| com.vladsch.flexmark.util.sequence | |
| com.vladsch.flexmark.util.sequence.mappers |
| Modifier and Type | Method and Description |
|---|---|
@NotNull CharMapper |
MappedSequence.getCharMapper() |
@NotNull CharMapper |
MappedRichSequence.getCharMapper() |
@NotNull CharMapper |
MappedBasedSequence.getCharMapper() |
| Modifier and Type | Method and Description |
|---|---|
T |
IRichSequence.appendRangesTo(@NotNull StringBuilder out,
@Nullable CharMapper charMapper,
Iterable<? extends Range> ranges) |
T |
IRichSequenceBase.appendRangesTo(@NotNull StringBuilder out,
@Nullable CharMapper charMapper,
Iterable<? extends Range> ranges) |
T |
IRichSequence.appendRangesTo(@NotNull StringBuilder out,
@Nullable CharMapper charMapper,
Range... ranges)
Append given ranges of this sequence to string builder
|
T |
IRichSequenceBase.appendRangesTo(@NotNull StringBuilder out,
@Nullable CharMapper charMapper,
Range... ranges) |
T |
IRichSequence.appendTo(@NotNull StringBuilder out,
@Nullable CharMapper charMapper) |
T |
IRichSequenceBase.appendTo(@NotNull StringBuilder out,
@Nullable CharMapper charMapper) |
T |
IRichSequence.appendTo(@NotNull StringBuilder out,
@Nullable CharMapper charMapper,
int startIndex) |
T |
IRichSequenceBase.appendTo(@NotNull StringBuilder out,
@Nullable CharMapper charMapper,
int startIndex) |
T |
IRichSequence.appendTo(@NotNull StringBuilder out,
@Nullable CharMapper charMapper,
int startIndex,
int endIndex)
Append helpers
|
T |
IRichSequenceBase.appendTo(@NotNull 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) |
T |
IRichSequence.toMapped(CharMapper mapper) |
@NotNull RichSequence |
MappedRichSequence.toMapped(CharMapper mapper) |
@NotNull BasedSequence |
BasedSequenceImpl.toMapped(CharMapper mapper) |
@NotNull BasedSequence |
MappedBasedSequence.toMapped(CharMapper mapper) |
@NotNull RichSequence |
RichSequenceImpl.toMapped(CharMapper mapper) |
| Modifier and Type | Field and 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 |
| Modifier and Type | Method and Description |
|---|---|
default CharMapper |
CharMapper.andThen(CharMapper after)
Returns a composed operator that first applies this operator to
its input, and then applies the
after operator to the result. |
default CharMapper |
CharMapper.compose(CharMapper before)
Returns a composed operator that first applies the
before
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 com.vladsch.flexmark.util.misc.CharPredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
default CharMapper |
CharMapper.andThen(CharMapper after)
Returns a composed operator that first applies this operator to
its input, and then applies the
after operator to the result. |
default CharMapper |
CharMapper.compose(CharMapper before)
Returns a composed operator that first applies the
before
operator to its input, and then applies this operator to the result. |
Copyright © 2020. All rights reserved.