API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.io. FilterWriter View Source
Author(s)
Mark Reinhold
Since
JDK1.1
Version
1.18, 05/11/17
Serial
Hierarchy
 Object
      Writer
          FilterWriter
Implements
Subclasses
Description
publicabstract abstract class FilterWriter
  Abstract class for writing filtered character streams.
See also:   
Constructors
protected FilterWriter (Writer out)
  Create a new filtered writer.
Methods
Hide/Show inherited methods
public Writer append (char c) throws IOException [Inherited From Writer]
  Appends the specified character to this writer.
public Writer append (CharSequence csq) throws IOException [Inherited From Writer]
  Appends the specified character sequence to this writer.
public Writer append (CharSequence csq, int start, int end) throws IOException [Inherited From Writer]
  Appends a subsequence of the specified character sequence to this writer.
public void close () throws IOException [Specified in Writer]
public void flush () throws IOException [Specified in Writer]
  Flushes the stream.
public void write (char[] cbuf) throws IOException [Inherited From Writer]
  Writes an array of characters.
public void write (char[] cbuf, int off, int len) throws IOException [Specified in Writer]
  Writes a portion of an array of characters.
public void write (int c) throws IOException [Overrides Writer]
  Writes a single character.
public void write (String str) throws IOException [Inherited From Writer]
  Writes a string.
public void write (String str, int off, int len) throws IOException [Overrides Writer]
  Writes a portion of a string.
Fields
Hide/Show inherited fields
protected Object lock [Inherited From Writer]
  The object used to synchronize operations on this stream.
protected Writer out
The underlying character-output stream.
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar