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[] var0)
           
 void write(byte[] var0, int var1, int var2)
           
 void write(int var0)
           
 void writeObject(Object var0)
           
 
Methods inherited from interface java.io.DataOutput
writeBoolean, writeByte, writeBytes, writeChar, writeChars, writeDouble, writeFloat, writeInt, writeLong, writeShort, writeUTF
 

Method Detail

close

void close()
           throws IOException
Throws:
IOException

flush

void flush()
           throws IOException
Throws:
IOException

write

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

write

void write(byte[] var0,
           int var1,
           int var2)
           throws IOException
Specified by:
write in interface DataOutput
Throws:
IOException

write

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

writeObject

void writeObject(Object var0)
                 throws IOException
Throws:
IOException


Copyright © 2006-2010 OSGi Alliance. All Rights Reserved.