com.sentilla.io
Interface ObjectOutput

All Superinterfaces:
DataOutput, Output
All Known Subinterfaces:
ObjectOutputStream, ObjectRandomAccess, RandomAccessFile
All Known Implementing Classes:
ByteBuffer, RemoteRandomAccessFile

public interface ObjectOutput
extends DataOutput

Provides methods for writing an Object as data. This involves serialization (see Serializable).


Method Summary
 void writeObject(Object obj)
          Write an object as data.
 
Methods inherited from interface com.sentilla.io.DataOutput
writeBoolean, writeByte, writeChar, writeDouble, writeFloat, writeInt, writeLong, writeShort, writeUTF
 
Methods inherited from interface com.sentilla.io.Output
close, flush, write, write, write
 

Method Detail

writeObject

void writeObject(Object obj)
Write an object as data.

Parameters:
obj - Object to write must implement java.io.Serializable


Copyright © 2007 Sentilla Corporation. All Rights Reserved.