final class CharSequenceReader
extends java.io.Reader
Reader that reads the characters in a CharSequence. Like StringReader,
but works with any CharSequence.| Modifier and Type | Field and Description |
|---|---|
private int |
mark |
private int |
pos |
private java.lang.CharSequence |
seq |
| Constructor and Description |
|---|
CharSequenceReader(java.lang.CharSequence seq)
Creates a new reader wrapping the given character sequence.
|
| Modifier and Type | Method and Description |
|---|---|
private void |
checkOpen() |
void |
close() |
private boolean |
hasRemaining() |
void |
mark(int readAheadLimit) |
boolean |
markSupported() |
int |
read() |
int |
read(char[] cbuf,
int off,
int len) |
int |
read(java.nio.CharBuffer target) |
boolean |
ready() |
private int |
remaining() |
void |
reset() |
long |
skip(long n) |
@CheckForNull private java.lang.CharSequence seq
private int pos
private int mark
public CharSequenceReader(java.lang.CharSequence seq)
private void checkOpen()
throws java.io.IOException
java.io.IOExceptionprivate boolean hasRemaining()
private int remaining()
public int read(java.nio.CharBuffer target)
throws java.io.IOException
read in interface java.lang.Readableread in class java.io.Readerjava.io.IOExceptionpublic int read()
throws java.io.IOException
read in class java.io.Readerjava.io.IOExceptionpublic int read(char[] cbuf,
int off,
int len)
throws java.io.IOException
read in class java.io.Readerjava.io.IOExceptionpublic long skip(long n)
throws java.io.IOException
skip in class java.io.Readerjava.io.IOExceptionpublic boolean ready()
throws java.io.IOException
ready in class java.io.Readerjava.io.IOExceptionpublic boolean markSupported()
markSupported in class java.io.Readerpublic void mark(int readAheadLimit)
throws java.io.IOException
mark in class java.io.Readerjava.io.IOExceptionpublic void reset()
throws java.io.IOException
reset in class java.io.Readerjava.io.IOExceptionpublic void close()
throws java.io.IOException
close in interface java.io.Closeableclose in interface java.lang.AutoCloseableclose in class java.io.Readerjava.io.IOException