java.io
Interface ObjectInput

All Superinterfaces:
DataInput
All Known Implementing Classes:
ObjectInputStream

public interface ObjectInput
extends DataInput


Method Summary
 int available()
           
 void close()
           
 int read()
           
 int read(byte[])
           
 int read(byte[], int, int)
           
 Object readObject()
           
 long skip(long)
           
 
Methods inherited from interface java.io.DataInput
readBoolean, readByte, readChar, readDouble, readFloat, readFully, readFully, readInt, readLine, readLong, readShort, readUnsignedByte, readUnsignedShort, readUTF, skipBytes
 

Method Detail

readObject

public Object readObject()
                  throws ClassNotFoundException,
                         IOException
ClassNotFoundException
IOException

read

public int read()
         throws IOException
IOException

read

public int read(byte[])
         throws IOException
IOException

read

public int read(byte[],
                int,
                int)
         throws IOException
IOException

skip

public long skip(long)
          throws IOException
IOException

available

public int available()
              throws IOException
IOException

close

public void close()
           throws IOException
IOException