jet.util
Interface RandomInputable

All Superinterfaces:
java.io.DataInput

public interface RandomInputable
extends java.io.DataInput


Method Summary
 void close()
           
 int read()
           
 int read(byte[] b)
           
 int read(byte[] b, int off, int len)
           
 void saveTo(java.lang.String filename)
          Save to a file.
 int skipBytes(int n)
           
 
Methods inherited from interface java.io.DataInput
readBoolean, readByte, readChar, readDouble, readFloat, readFully, readFully, readInt, readLine, readLong, readShort, readUnsignedByte, readUnsignedShort, readUTF
 

Method Detail

close

void close()
           throws java.io.IOException
Throws:
java.io.IOException
See Also:
InputStream.close()

read

int read()
         throws java.io.IOException
Throws:
java.io.IOException
See Also:
InputStream.read()

read

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

read

int read(byte[] b)
         throws java.io.IOException
Throws:
java.io.IOException
See Also:
InputStream.read(byte[])

saveTo

void saveTo(java.lang.String filename)
            throws java.io.IOException
Save to a file.

Throws:
java.io.IOException

skipBytes

int skipBytes(int n)
              throws java.io.IOException
Specified by:
skipBytes in interface java.io.DataInput
Throws:
java.io.IOException