Methods Summary |
---|
public int | available()Invokes the delegate's available() method.
return in.available();
|
public void | close()Invokes the delegate's close() method.
in.close();
|
public synchronized void | mark(int idx)Invokes the delegate's mark(int) method.
in.mark(idx);
|
public boolean | markSupported()Invokes the delegate's markSupported() method.
return in.markSupported();
|
public int | read()Invokes the delegate's read() method.
return in.read();
|
public int | read(byte[] bts)Invokes the delegate's read(byte[]) method.
return in.read(bts);
|
public int | read(byte[] bts, int st, int end)Invokes the delegate's read(byte[], int, int) method.
return in.read(bts, st, end);
|
public synchronized void | reset()Invokes the delegate's reset() method.
in.reset();
|
public long | skip(long ln)Invokes the delegate's skip(long) method.
return in.skip(ln);
|