Package java.io
Interface ObjectOutput
-
- All Superinterfaces:
DataOutput
- All Known Implementing Classes:
ObjectOutputStream
public interface ObjectOutput extends DataOutput
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose()voidflush()voidwrite(byte[] var0)voidwrite(byte[] var0, int var1, int var2)voidwrite(int var0)voidwriteObject(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:
writein interfaceDataOutput- Throws:
IOException
-
write
void write(byte[] var0, int var1, int var2) throws IOException- Specified by:
writein interfaceDataOutput- Throws:
IOException
-
write
void write(int var0) throws IOException- Specified by:
writein interfaceDataOutput- Throws:
IOException
-
writeObject
void writeObject(Object var0) throws IOException
- Throws:
IOException
-
-