com.imagero.uio
Interface Input

All Known Subinterfaces:
RandomAccessInput, RandomAccessIO
All Known Implementing Classes:
AbstractRandomAccessInput, AbstractRandomAccessIO, ByteArrayRandomAccessIO

public interface Input

Unfortunately InputStream is not interface.


Method Summary
 int read()
           
 int read(byte[] b)
           
 int read(byte[] b, int off, int len)
           
 long skip(long n)
           
 

Method Detail

read

public int read()
         throws java.io.IOException
Throws:
java.io.IOException

skip

public long skip(long n)
          throws java.io.IOException
Throws:
java.io.IOException

read

public int read(byte[] b)
         throws java.io.IOException
Throws:
java.io.IOException

read

public int read(byte[] b,
                int off,
                int len)
         throws java.io.IOException
Throws:
java.io.IOException