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 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 interfaceDataOutput
- Throws:
IOException
-
write
void write(byte[] var0, int var1, int var2) throws IOException
- Specified by:
write
in interfaceDataOutput
- Throws:
IOException
-
write
void write(int var0) throws IOException
- Specified by:
write
in interfaceDataOutput
- Throws:
IOException
-
writeObject
void writeObject(Object var0) throws IOException
- Throws:
IOException
-
-