All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.io.Reader Maven / Gradle / Ivy

The newest version!
package java.io;

public abstract class Reader {
    protected Object lock;

    protected Reader() {}
    protected Reader(Object lock) {}

    /**
     * @throws IOException
     */
    public abstract void close() throws IOException;

    /**
     * @throws IOException
     */
    public void mark(int arg0) throws IOException {}

    public boolean markSupported() {
        return false;
    }

    /**
     * @throws IOException
     */
    public int read() throws IOException {
        return 0;
    }

    /**
     * @throws IOException
     */
    public int read(char[] cbuf) throws IOException {
        return 0;
    }

    /**
     * @throws IOException
     */
    public abstract int read(char[] cbuf, int off, int len) throws IOException;

    /**
     * @throws IOException
     */
    public boolean ready() throws IOException {
        return false;
    }

    /**
     * @throws IOException
     */
    public void reset() throws IOException {}

    /**
     * @throws IllegalArgumentException 
     * @throws IOException
     */
    public long skip(long n) throws IOException {
        return 0;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy