Uses of Interface
eu.bandm.tools.util.java.Strings.TextFlow
Packages that use Strings.TextFlow
Package
Description
-
Uses of Strings.TextFlow in eu.bandm.tools.util.java
Fields in eu.bandm.tools.util.java declared as Strings.TextFlowModifier and TypeFieldDescriptionstatic final Strings.TextFlowStrings.TextFlow.JAVA_STRINGA text flow that encodes text according to the rules of Java string literals.static final Strings.TextFlowStrings.TextFlow.PASCAL_STRINGA text flow that encodes text according to the rules of Pascal string literals.static final Strings.TextFlowStrings.TextFlow.XMLA text flow that encodes text according to the rules of XML text.Methods in eu.bandm.tools.util.java that return Strings.TextFlowModifier and TypeMethodDescriptiondefault Strings.TextFlowStrings.TextFlow.andAlways(Strings.TextFlow other) Returns a variant of this text flow that forwards both transformed and untransformed text to the given text flow.default Strings.TextFlowStrings.TextFlow.andThen(Strings.TextFlow other) Returns a text flow that forwards transformed text to the given text flow.static Strings.TextFlowStrings.TextFlow.drop()Returns a text flow that drops all text.static Strings.TextFlowStrings.TextFlow.empty()Returns a text flow that forwards all text untransformed.static Strings.TextFlowStrings.TextFlow.escapeNumeric(String prefix, String suffix, int radix, int minWidth, int maxWidth) Returns a text flow that encodes code points numerically.static Strings.TextFlowReturns a text flow that encodes code points symbolically.static Strings.TextFlowStrings.TextFlow.geminate()Returns a text flow that encodes code points by doubling.static Strings.TextFlowStrings.TextFlow.identity()Returns a text flow that forwards all text as if transformed.static Strings.TextFlowStrings.TextFlow.map(IntUnaryOperator op) Returns a text flow that transforms each code point according to a given function.default Strings.TextFlowStrings.TextFlow.orElse(Strings.TextFlow other) Returns a text flow that forwards untransformed text to the given text flow.static Strings.TextFlowStrings.TextFlow.select(IntPredicate which) Returns a text flow that transforms selected code points to themselves.static Strings.TextFlowStrings.TextFlow.utf16()Returns a text flow that encodes code points in UTF-16.Methods in eu.bandm.tools.util.java with parameters of type Strings.TextFlowModifier and TypeMethodDescriptiondefault Strings.TextFlowStrings.TextFlow.andAlways(Strings.TextFlow other) Returns a variant of this text flow that forwards both transformed and untransformed text to the given text flow.default Strings.TextFlowStrings.TextFlow.andThen(Strings.TextFlow other) Returns a text flow that forwards transformed text to the given text flow.default Strings.TextFlowStrings.TextFlow.orElse(Strings.TextFlow other) Returns a text flow that forwards untransformed text to the given text flow.static StringStrings.quote(String text, String delimiter, Strings.TextFlow escapeStyle) Returns a variant of the given text, quoted according to the given escaping style and enclosed in the given delimiter.static StringStrings.quote(String text, String openDelimiter, String closeDelimiter, Strings.TextFlow escapeStyle) Returns a variant of the given text, quoted according to the given escaping style and enclosed in the given delimiters.