Module java.base
Package java.io

Interface ObjectOutput

All Superinterfaces:
AutoCloseable, DataOutput
All Known Implementing Classes:
ObjectOutputStream

public interface ObjectOutput extends DataOutput, AutoCloseable
ObjectOutput extends the DataOutput interface to include writing of objects. DataOutput includes methods for output of primitive types, ObjectOutput extends that interface to include objects, arrays, and Strings.
Since:
1.1
See Also: