Package java.io
Class PushbackReader
- java.lang.Object
-
- java.io.Reader
-
- java.io.FilterReader
-
- java.io.PushbackReader
-
public class PushbackReader extends FilterReader
-
-
Field Summary
-
Fields inherited from class java.io.FilterReader
in
-
-
Constructor Summary
Constructors Constructor Description PushbackReader(Reader var0)PushbackReader(Reader var0, int var1)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidmark(int var0)booleanmarkSupported()intread()intread(char[] var0, int var1, int var2)booleanready()voidreset()voidunread(char[] var0)voidunread(char[] var0, int var1, int var2)voidunread(int var0)-
Methods inherited from class java.io.FilterReader
skip
-
-
-
-
Method Detail
-
close
public void close() throws IOException- Overrides:
closein classFilterReader- Throws:
IOException
-
mark
public void mark(int var0) throws IOException- Overrides:
markin classFilterReader- Throws:
IOException
-
markSupported
public boolean markSupported()
- Overrides:
markSupportedin classFilterReader
-
read
public int read() throws IOException- Overrides:
readin classFilterReader- Throws:
IOException
-
read
public int read(char[] var0, int var1, int var2) throws IOException- Overrides:
readin classFilterReader- Throws:
IOException
-
ready
public boolean ready() throws IOException- Overrides:
readyin classFilterReader- Throws:
IOException
-
reset
public void reset() throws IOException- Overrides:
resetin classFilterReader- Throws:
IOException
-
unread
public void unread(char[] var0) throws IOException- Throws:
IOException
-
unread
public void unread(char[] var0, int var1, int var2) throws IOException- Throws:
IOException
-
unread
public void unread(int var0) throws IOException- Throws:
IOException
-
-