NewlineProcessor |
Newline.asSeparator() |
Interprets this type of newline as a line separator.
|
NewlineProcessor |
Newline.asTerminator() |
Interprets this type of newline as a line terminator.
|
NewlineProcessor |
NewlineProcessor.filter(Predicate<? super String> filter) |
Creates a newline processor that behaves like this processor, but filters out lines that do not match the given
predicate.
|
NewlineProcessor |
NewlineProcessor.map(UnaryOperator<String> mapper) |
Creates a newline processor that behaves like this processor, but maps each line using the given mapper.
|
static NewlineProcessor |
Newlines.map(NewlineProcessor processor,
UnaryOperator<String> mapper) |
Creates a newline processor that behaves like the given processor, but maps each line using the given mapper.
|
static NewlineProcessor |
Newlines.newlineAsSeparator(Newline... newlines) |
Creates a newline processor that interprets the newlines as a separator.
|
static NewlineProcessor |
Newlines.newlineAsSeparator(Iterable<? extends Newline> newlines) |
Creates a newline processor that interprets the newlines as a separator.
|
static NewlineProcessor |
Newlines.newlineAsTerminator(Newline... newlines) |
Creates a newline processor that interprets the newlines as a terminator.
|
static NewlineProcessor |
Newlines.newlineAsTerminator(Iterable<? extends Newline> newlines) |
Creates a newline processor that interprets the newlines as a terminator.
|
static NewlineProcessor |
Newlines.newlineFiltering(NewlineProcessor processor,
Predicate<? super String> filter) |
Creates a newline processor that behaves like the given processor, but filters out lines that do not match the
given predicate.
|
static NewlineProcessor |
Newlines.newlineTokenAsSeparator(Iterable<String> tokens) |
Creates a newline processor that interprets the newlines as a separator.
|
static NewlineProcessor |
Newlines.newlineTokenAsSeparator(String... tokens) |
Creates a newline processor that interprets the newlines as a separator.
|
static NewlineProcessor |
Newlines.newlineTokenAsTerminator(Iterable<String> tokens) |
Creates a newline processor that interprets the newlines as a terminator.
|
static NewlineProcessor |
Newlines.newlineTokenAsTerminator(String... tokens) |
Creates a newline processor that interprets the newlines as a terminator.
|