Uses of Interface
java.lang.Appendable
Packages that useAppendable
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 ofAppendable injava.io
Classes injava.io that implementAppendableModifier and TypeClassDescriptionclassWrites text to a character-output stream, buffering characters so as to provide for the efficient writing of single characters, arrays, and strings.classThis class implements a character buffer that can be used as an Writer.classWrites text to character files using a default buffer size.classAbstract class for writing filtered character streams.classAn OutputStreamWriter is a bridge from character streams to byte streams: Characters written to it are encoded into bytes using a specifiedcharset.classPiped character-output streams.classAPrintStreamadds functionality to another output stream, namely the ability to print representations of various data values conveniently.classPrints formatted representations of objects to a text-output stream.classA character stream that collects its output in a string buffer, which can then be used to construct a string.classAbstract class for writing to character streams.Uses ofAppendable injava.lang
Classes injava.lang that implementAppendableModifier and TypeClassDescriptionfinal classA thread-safe, mutable sequence of characters.final classA mutable sequence of characters.Methods injava.lang that returnAppendableModifier 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 ofAppendable injava.nio
Classes injava.nio that implementAppendableUses ofAppendable injava.rmi.server
Classes injava.rmi.server that implementAppendableUses ofAppendable injava.time.format
Methods injava.time.format with parameters of typeAppendableModifier and TypeMethodDescriptionvoidDateTimeFormatter.formatTo(TemporalAccessor temporal,Appendable appendable) Formats a date-time object to anAppendableusing this formatter.Uses ofAppendable injava.util
Methods injava.util with type parameters of typeAppendableModifier and TypeMethodDescription<A extendsAppendable>
AHexFormat.formatHex(A out, byte[] bytes) Appends formatted hexadecimal strings from a byte array to theAppendable.<A extendsAppendable>
AHexFormat.formatHex(A out, byte[] bytes, int fromIndex, int toIndex) Appends formatted hexadecimal strings from a byte array range to theAppendable.<A extendsAppendable>
AHexFormat.toHexDigits(A out, byte value) Appends two hexadecimal characters for the byte value to theAppendable.Methods injava.util that returnAppendableConstructors injava.util with parameters of typeAppendableModifierConstructorDescriptionConstructs a new formatter with the specified destination.Formatter(Appendable a,Locale l) Constructs a new formatter with the specified destination and locale.