| 
 | JavaTM 2 Platform Standard Ed. 5.0 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Appendable | |
|---|---|
| java.io | Provides for system input and output through data streams, serialization and the file system. | 
| java.lang | Provides classes that are fundamental to the design of the Java programming language. | 
| java.nio | Defines buffers, which are containers for data, and provides an overview of the other NIO packages. | 
| java.rmi.server | Provides classes and interfaces for supporting the server side of RMI. | 
| java.util | Contains the collections framework, legacy collection classes, event model, date and time facilities, internationalization, and miscellaneous utility classes (a string tokenizer, a random-number generator, and a bit array). | 
| Uses of Appendable in java.io | 
|---|
| Classes in java.io that implement Appendable | |
|---|---|
|  class | BufferedWriterWrite text to a character-output stream, buffering characters so as to provide for the efficient writing of single characters, arrays, and strings. | 
|  class | CharArrayWriterThis class implements a character buffer that can be used as an Writer. | 
|  class | FileWriterConvenience class for writing character files. | 
|  class | FilterWriterAbstract class for writing filtered character streams. | 
|  class | OutputStreamWriterAn OutputStreamWriter is a bridge from character streams to byte streams: Characters written to it are encoded into bytes using a specified . | 
|  class | PipedWriterPiped character-output streams. | 
|  class | PrintStreamA PrintStreamadds functionality to another output stream,
 namely the ability to print representations of various data values
 conveniently. | 
|  class | PrintWriterPrint formatted representations of objects to a text-output stream. | 
|  class | StringWriterA character stream that collects its output in a string buffer, which can then be used to construct a string. | 
|  class | WriterAbstract class for writing to character streams. | 
| Uses of Appendable in java.lang | 
|---|
| Classes in java.lang that implement Appendable | |
|---|---|
|  class | StringBufferA thread-safe, mutable sequence of characters. | 
|  class | StringBuilderA mutable sequence of characters. | 
| Methods in java.lang that return Appendable | |
|---|---|
|  Appendable | Appendable.append(char c)Appends the specified character to this Appendable. | 
|  Appendable | Appendable.append(CharSequence csq)Appends the specified character sequence to this Appendable. | 
|  Appendable | Appendable.append(CharSequence csq,
       int start,
       int end)Appends a subsequence of the specified character sequence to this Appendable. | 
| Uses of Appendable in java.nio | 
|---|
| Classes in java.nio that implement Appendable | |
|---|---|
|  class | CharBufferA character buffer. | 
| Uses of Appendable in java.rmi.server | 
|---|
| Classes in java.rmi.server that implement Appendable | |
|---|---|
|  class | LogStreamDeprecated. no replacement | 
| Uses of Appendable in java.util | 
|---|
| Methods in java.util that return Appendable | |
|---|---|
|  Appendable | Formatter.out()Returns the destination for the output. | 
| Constructors in java.util with parameters of type Appendable | |
|---|---|
| Formatter(Appendable a)Constructs a new formatter with the specified destination. | |
| Formatter(Appendable a,
          Locale l)Constructs a new formatter with the specified destination and locale. | |
| 
 | JavaTM 2 Platform Standard Ed. 5.0 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
Copyright 2004 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.