Uses of Interface
java.lang.Appendable
| Package | Description |
|---|---|
| java.io | |
| java.lang | |
| java.nio | |
| java.util | |
| org.bouncycastle.util.io.pem | |
| org.conscrypt |
-
Uses of Appendable in java.io
Classes in java.io that implement Appendable Modifier and Type Class Description classBufferedWriterWraps an existingWriterand buffers the output.classCharArrayWriterA specializedWriterfor class for writing content to an (internal) char array.classFileWriterA specializedWriterthat writes to a file in the file system.classFilterWriterWraps an existingWriterand performs some transformation on the output data while it is being written.classOutputStreamWriterA class for turning a character stream into a byte stream.classPipedWriterPlaces information on a communications pipe.classPrintStreamWraps an existingOutputStreamand provides convenience methods for writing common data types in a human readable format.classPrintWriterWraps either an existingOutputStreamor an existingWriterand provides convenience methods for printing common data types in a human readable format.classStringWriterA specializedWriterthat writes characters to aStringBufferin a sequential manner, appending them in the process.classWriterThe base class for all writers. -
Uses of Appendable in java.lang
Classes in java.lang that implement Appendable Modifier and Type Class Description classStringBufferA modifiablesequence of charactersfor use in creating strings, where all accesses are synchronized.classStringBuilderA modifiablesequence of charactersfor use in creating strings.Methods in java.lang that return Appendable Modifier and Type Method Description AppendableAppendable. append(char c)Appends the specified character.AppendableAppendable. append(CharSequence csq)Appends the character sequencecsq.AppendableAppendable. append(CharSequence csq, int start, int end)Appends a subsequence ofcsq. -
Uses of Appendable in java.nio
Classes in java.nio that implement Appendable Modifier and Type Class Description classCharBufferA buffer of chars. -
Uses of Appendable in java.util
Methods in java.util that return Appendable Modifier and Type Method Description AppendableFormatter. out()Returns the output destination of theFormatter.Constructors in java.util with parameters of type Appendable Constructor Description Formatter(Appendable a)Constructs aFormatterwhose output will be written to the specifiedAppendable.Formatter(Appendable a, Locale l)Constructs aFormatterwith the specifiedLocaleand whose output will be written to the specifiedAppendable. -
Uses of Appendable in org.bouncycastle.util.io.pem
Classes in org.bouncycastle.util.io.pem that implement Appendable Modifier and Type Class Description classPemWriterA generic PEM writer, based on RFC 1421 -
Uses of Appendable in org.conscrypt
Classes in org.conscrypt that implement Appendable Modifier and Type Class Description static classLogger.Stream