Uses of Interface
com.aoapps.lang.io.Encoder
-
Packages that use Encoder Package Description com.aoapps.lang com.aoapps.lang.io -
-
Uses of Encoder in com.aoapps.lang
Methods in com.aoapps.lang with parameters of type Encoder Modifier and Type Method Description static voidCoercion. append(Object value, Encoder encoder, Appendable out)Encodes an object's String representation, supporting streaming for specialized types.static voidCoercion. append(Object value, Encoder encoder, Appendable out, boolean outOptimized)Encodes an object's String representation, supporting streaming for specialized types.static WriterCoercion. optimize(Writer out, Encoder encoder)Optimizes the given writer by passing throughCoercionOptimizer.optimize(java.io.Writer, com.aoapps.lang.io.Encoder)on all registered coercion optimizers until there are no replacements.static AppendableCoercion. optimize(Appendable out, Encoder encoder)Optimizes the given appendable by dispatching toCoercion.optimize(java.io.Writer, com.aoapps.lang.io.Encoder)when it is aWriter.WriterCoercionOptimizer. optimize(Writer out, Encoder encoder)Unwraps a writer to expose any wrapped writer.static voidStrings. replace(String string, char find, String replacement, Appendable out, Encoder encoder)Replaces all occurrences of a character with a String, appends the replacement toout.static voidStrings. replace(String string, String find, String replacement, Appendable out, Encoder encoder)Replaces all occurrences of a String with a String, appends the replacement toout.static voidCoercion. write(Object value, Encoder encoder, Writer out)Encodes an object's String representation, supporting streaming for specialized types.static voidCoercion. write(Object value, Encoder encoder, Writer out, boolean outOptimized)Encodes an object's String representation, supporting streaming for specialized types. -
Uses of Encoder in com.aoapps.lang.io
Methods in com.aoapps.lang.io that return Encoder Modifier and Type Method Description EncoderEncoder. append(char c, Appendable out)EncoderEncoder. append(CharSequence csq, int start, int end, Appendable out)EncoderEncoder. append(CharSequence csq, Appendable out)EncoderEncoderWriter. getEncoder()This method may be overridden for the purpose of covariant return, but must returnEncoderWriter.encoder.Methods in com.aoapps.lang.io with parameters of type Encoder Modifier and Type Method Description default voidWritable. appendTo(Encoder encoder, Appendable out)Appends a streamed version of the object's String representation using the given encoder.default voidWritable. appendTo(Encoder encoder, Appendable out, long start, long end)Appends a streamed version of the object's String representation using the given encoder.voidAoCharArrayWriter. writeTo(Encoder encoder, Writer out)voidAoCharArrayWriter. writeTo(Encoder encoder, Writer out, long off, long len)voidWritable. writeTo(Encoder encoder, Writer out)Writes a streamed version of the object's String representation using the given encoder.voidWritable. writeTo(Encoder encoder, Writer out, long off, long len)Writes a streamed version of the object's String representation using the given encoder.Constructors in com.aoapps.lang.io with parameters of type Encoder Constructor Description EncoderWriter(Encoder encoder, Writer out)EncoderWriter(Encoder encoder, Writer out, boolean outOptimized)
-