java.io
Class Reader

java.lang.Object
  |
  +--java.io.Reader
Direct Known Subclasses:
BufferedReader, CharArrayReader, FilterReader, InputStreamReader, PipedReader, StringReader

public abstract synchronized class Reader
extends Object


Field Summary
protected  Object lock
           
 
Constructor Summary
protected Reader()
           
protected Reader(Object)
           
 
Method Summary
abstract  void close()
           
 void mark(int)
           
 boolean markSupported()
           
 int read()
           
 int read(char[])
           
abstract  int read(char[], int, int)
           
 boolean ready()
           
 void reset()
           
 long skip(long)
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait
 

Field Detail

lock

protected Object lock
Constructor Detail

Reader

protected Reader()

Reader

protected Reader(Object)
Method Detail

read

public int read()
         throws IOException
IOException

read

public int read(char[])
         throws IOException
IOException

read

public abstract int read(char[],
                         int,
                         int)
                  throws IOException
IOException

skip

public long skip(long)
          throws IOException
IOException

ready

public boolean ready()
              throws IOException
IOException

markSupported

public boolean markSupported()

mark

public void mark(int)
          throws IOException
IOException

reset

public void reset()
           throws IOException
IOException

close

public abstract void close()
                    throws IOException
IOException