Uses of Interface
de.xima.fc.common.text.newline.NewlineProcessor
Packages that use NewlineProcessor
-
Uses of NewlineProcessor in de.xima.fc.common.text.newline
Methods in de.xima.fc.common.text.newline that return NewlineProcessorModifier and TypeMethodDescriptionNewline.asSeparator()Interprets this type of newline as a line separator.Newline.asTerminator()Interprets this type of newline as a line terminator.Creates a newline processor that behaves like this processor, but filters out lines that do not match the given predicate.NewlineProcessor.map(UnaryOperator<String> mapper) Creates a newline processor that behaves like this processor, but maps each line using the given mapper.static NewlineProcessorNewlines.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 NewlineProcessorNewlines.newlineAsSeparator(Newline... newlines) Creates a newline processor that interprets the newlines as a separator.static NewlineProcessorNewlines.newlineAsSeparator(Iterable<? extends Newline> newlines) Creates a newline processor that interprets the newlines as a separator.static NewlineProcessorNewlines.newlineAsTerminator(Newline... newlines) Creates a newline processor that interprets the newlines as a terminator.static NewlineProcessorNewlines.newlineAsTerminator(Iterable<? extends Newline> newlines) Creates a newline processor that interprets the newlines as a terminator.static NewlineProcessorNewlines.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 NewlineProcessorNewlines.newlineTokenAsSeparator(Iterable<String> tokens) Creates a newline processor that interprets the newlines as a separator.static NewlineProcessorNewlines.newlineTokenAsSeparator(String... tokens) Creates a newline processor that interprets the newlines as a separator.static NewlineProcessorNewlines.newlineTokenAsTerminator(Iterable<String> tokens) Creates a newline processor that interprets the newlines as a terminator.static NewlineProcessorNewlines.newlineTokenAsTerminator(String... tokens) Creates a newline processor that interprets the newlines as a terminator.Methods in de.xima.fc.common.text.newline with parameters of type NewlineProcessorModifier and TypeMethodDescriptionstatic NewlineProcessorNewlines.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 NewlineProcessorNewlines.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.