public class ServletReaderImpl extends BufferedReader
Modifier and Type | Field and Description |
---|---|
protected Reader |
ib |
protected char[] |
lineBuffer |
Constructor and Description |
---|
ServletReaderImpl(Reader ib) |
Modifier and Type | Method and Description |
---|---|
protected Object |
clone()
Prevent cloning the facade.
|
void |
close() |
void |
mark(int readAheadLimit) |
boolean |
markSupported() |
int |
read() |
int |
read(char[] cbuf) |
int |
read(char[] cbuf,
int off,
int len) |
String |
readLine() |
boolean |
ready() |
void |
reset() |
long |
skip(long n) |
lines
protected Reader ib
protected char[] lineBuffer
public ServletReaderImpl(Reader ib)
protected Object clone() throws CloneNotSupportedException
clone
in class Object
CloneNotSupportedException
public void close() throws IOException
close
in interface Closeable
close
in interface AutoCloseable
close
in class BufferedReader
IOException
public int read() throws IOException
read
in class BufferedReader
IOException
public int read(char[] cbuf) throws IOException
read
in class Reader
IOException
public int read(char[] cbuf, int off, int len) throws IOException
read
in class BufferedReader
IOException
public long skip(long n) throws IOException
skip
in class BufferedReader
IOException
public boolean ready() throws IOException
ready
in class BufferedReader
IOException
public boolean markSupported()
markSupported
in class BufferedReader
public void mark(int readAheadLimit) throws IOException
mark
in class BufferedReader
IOException
public void reset() throws IOException
reset
in class BufferedReader
IOException
public String readLine() throws IOException
readLine
in class BufferedReader
IOException
Copyright © 2014 Oracle Corporation. All rights reserved.