java.io
Interface ObjectOutput

All Superinterfaces:
DataOutput
All Known Implementing Classes:
ObjectOutputStream

public interface ObjectOutput
extends DataOutput


Method Summary
 void close()
           
 void flush()
           
 void write(byte[])
           
 void write(byte[], int, int)
           
 void write(int)
           
 void writeObject(Object)
           
 
Methods inherited from interface java.io.DataOutput
writeBoolean, writeByte, writeBytes, writeChar, writeChars, writeDouble, writeFloat, writeInt, writeLong, writeShort, writeUTF
 

Method Detail

writeObject

public void writeObject(Object)
                 throws IOException
IOException

write

public void write(int)
           throws IOException
Specified by:
write in interface DataOutput
IOException

write

public void write(byte[])
           throws IOException
Specified by:
write in interface DataOutput
IOException

write

public void write(byte[],
                  int,
                  int)
           throws IOException
Specified by:
write in interface DataOutput
IOException

flush

public void flush()
           throws IOException
IOException

close

public void close()
           throws IOException
IOException