Class DelegatingReader
- java.lang.Object
- 
- java.io.Reader
- 
- org.apache.johnzon.mapper.internal.DelegatingReader
 
 
- 
- All Implemented Interfaces:
- Closeable,- AutoCloseable,- Readable
 
 public class DelegatingReader extends Reader 
- 
- 
Constructor SummaryConstructors Constructor Description DelegatingReader(Reader reader)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidmark(int readAheadLimit)booleanmarkSupported()intread()intread(char[] cbuf)intread(char[] cbuf, int off, int len)intread(CharBuffer target)booleanready()voidreset()longskip(long n)- 
Methods inherited from class java.io.ReadernullReader, transferTo
 
- 
 
- 
- 
- 
Field Detail- 
readerprivate final Reader reader 
 
- 
 - 
Constructor Detail- 
DelegatingReaderpublic DelegatingReader(Reader reader) 
 
- 
 - 
Method Detail- 
closepublic void close() throws IOException- Specified by:
- closein interface- AutoCloseable
- Specified by:
- closein interface- Closeable
- Specified by:
- closein class- Reader
- Throws:
- IOException
 
 - 
readpublic int read(CharBuffer target) throws IOException - Specified by:
- readin interface- Readable
- Overrides:
- readin class- Reader
- Throws:
- IOException
 
 - 
readpublic int read() throws IOException- Overrides:
- readin class- Reader
- Throws:
- IOException
 
 - 
readpublic int read(char[] cbuf) throws IOException- Overrides:
- readin class- Reader
- Throws:
- IOException
 
 - 
readpublic int read(char[] cbuf, int off, int len) throws IOException- Specified by:
- readin class- Reader
- Throws:
- IOException
 
 - 
skippublic long skip(long n) throws IOException- Overrides:
- skipin class- Reader
- Throws:
- IOException
 
 - 
readypublic boolean ready() throws IOException- Overrides:
- readyin class- Reader
- Throws:
- IOException
 
 - 
markSupportedpublic boolean markSupported() - Overrides:
- markSupportedin class- Reader
 
 - 
markpublic void mark(int readAheadLimit) throws IOException- Overrides:
- markin class- Reader
- Throws:
- IOException
 
 - 
resetpublic void reset() throws IOException- Overrides:
- resetin class- Reader
- Throws:
- IOException
 
 
- 
 
-