Uses of Interface
java.lang.Appendable
Package
Description
Provides for system input and output through data streams,
serialization and the file system.
Provides classes that are fundamental to the design of the Java
programming language.
Defines buffers, which are containers for data, and provides an
overview of the other NIO packages.
Provides classes and interfaces for supporting the server side of RMI.
Provides classes to print and parse dates and times.
Contains the collections framework, some internationalization support classes,
a service loader, properties, random number generation, string parsing
and scanning classes, base64 encoding and decoding, a bit array, and
several miscellaneous utility classes.
-
Uses of Appendable in java.io
Modifier and TypeClassDescriptionclass
Writes text to a character-output stream, buffering characters so as to provide for the efficient writing of single characters, arrays, and strings.class
This class implements a character buffer that can be used as a Writer.class
Writes text to character files using a default buffer size.class
Abstract class for writing filtered character streams.class
An OutputStreamWriter is a bridge from character streams to byte streams: Characters written to it are encoded into bytes using a specifiedcharset
.class
Piped character-output streams.class
APrintStream
adds functionality to another output stream, namely the ability to print representations of various data values conveniently.class
Prints formatted representations of objects to a text-output stream.class
A character stream that collects its output in a string buffer, which can then be used to construct a string.class
Abstract class for writing to character streams. -
Uses of Appendable in java.lang
Modifier and TypeClassDescriptionfinal class
A thread-safe, mutable sequence of characters.final class
A mutable sequence of characters.Modifier and TypeMethodDescriptionAppendable.append
(char c) Appends the specified character to thisAppendable
.Appendable.append
(CharSequence csq) Appends the specified character sequence to thisAppendable
.Appendable.append
(CharSequence csq, int start, int end) Appends a subsequence of the specified character sequence to thisAppendable
. -
Uses of Appendable in java.nio
-
Uses of Appendable in java.rmi.server
-
Uses of Appendable in java.time.format
Modifier and TypeMethodDescriptionvoid
DateTimeFormatter.formatTo
(TemporalAccessor temporal, Appendable appendable) Formats a date-time object to anAppendable
using this formatter. -
Uses of Appendable in java.util
Modifier and TypeMethodDescription<A extends Appendable>
AHexFormat.formatHex
(A out, byte[] bytes) Appends formatted hexadecimal strings from a byte array to theAppendable
.<A extends Appendable>
AHexFormat.formatHex
(A out, byte[] bytes, int fromIndex, int toIndex) Appends formatted hexadecimal strings from a byte array range to theAppendable
.<A extends Appendable>
AHexFormat.toHexDigits
(A out, byte value) Appends two hexadecimal characters for the byte value to theAppendable
.ModifierConstructorDescriptionConstructs a new formatter with the specified destination.Formatter
(Appendable a, Locale l) Constructs a new formatter with the specified destination and locale.