Closeable
, AutoCloseable
, Readable
public class TranslateReader extends FilterReader
in
Constructor | Description |
---|---|
TranslateReader(I2PAppContext ctx,
String bundle,
InputStream in) |
|
TranslateReader(I2PAppContext ctx,
String bundle,
Reader in) |
Modifier and Type | Method | Description |
---|---|---|
void |
close() |
|
static void |
main(String[] args) |
Do not comment out, used to extract tags as a part of the build process.
|
void |
mark(int readLimit) |
|
boolean |
markSupported() |
|
int |
read() |
|
int |
read(char[] cbuf,
int off,
int len) |
|
boolean |
ready() |
|
void |
reset() |
|
long |
skip(long n) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
read, read, transferTo
public TranslateReader(I2PAppContext ctx, String bundle, InputStream in) throws IOException
bundle
- may be null for tagging onlyin
- UTF-8IOException
public TranslateReader(I2PAppContext ctx, String bundle, Reader in) throws IOException
bundle
- may be null for tagging onlyIOException
public int read() throws IOException
read
in class FilterReader
IOException
public int read(char[] cbuf, int off, int len) throws IOException
read
in class FilterReader
IOException
public long skip(long n) throws IOException
skip
in class FilterReader
IOException
public boolean ready() throws IOException
ready
in class FilterReader
IOException
public void close() throws IOException
close
in interface AutoCloseable
close
in interface Closeable
close
in class FilterReader
IOException
public void mark(int readLimit)
mark
in class FilterReader
public void reset() throws IOException
reset
in class FilterReader
IOException
public boolean markSupported()
markSupported
in class FilterReader
public static void main(String[] args)