Java.IO.ObjectOutputStream: Method Members

The methods of Java.IO.ObjectOutputStream are listed below. For a list of all members, see the ObjectOutputStream Members list.

See Also: Inherited members from Java.IO.OutputStream

Public Methods

DefaultWriteObject()
Default method to write objects to this stream.
PutFields() : ObjectOutputStream.PutField
Gets this stream's PutField object.
Reset()
Resets the state of this stream.
UseProtocolVersion(ObjectStreamProtocol)
Sets the specified protocol version to be used by this stream.
override
Write(int)
Writes a single byte to the target stream.
WriteBoolean(bool)
Writes a boolean to the target stream.
WriteByte(int)
Writes a byte (8 bit) to the target stream.
WriteBytes(string)
Writes the string value as a sequence of bytes to the target stream.
WriteChar(int)
Writes a character (16 bit) to the target stream.
WriteChars(string)
Writes the string value as a sequence of characters to the target stream.
WriteDouble(double)
Writes a double (64 bit) to the target stream.
WriteFields()
Writes the fields of the object currently being written to the target stream.
WriteFloat(float)
Writes a float (32 bit) to the target stream.
WriteInt(int)
Writes an integer (32 bit) to the target stream.
WriteLong(long)
Writes a long (64 bit) to the target stream.
WriteObject(Java.Lang.Object)
Writes an object to the target stream.
WriteShort(int)
Writes a short (16 bit) to the target stream.
WriteUnshared(Java.Lang.Object)
Writes an unshared object to the target stream.
WriteUTF(string)
Writes a string encoded with Java.IO.IDataInput to the target stream.

Protected Methods

AnnotateClass(Java.Lang.Class)
Documentation for this section has not yet been entered.
AnnotateProxyClass(Java.Lang.Class)
Documentation for this section has not yet been entered.
Drain()
Writes buffered data to the target stream.
EnableReplaceObject(bool) : bool
Enables object replacement for this stream.
ReplaceObject(Java.Lang.Object) : Java.Lang.Object
Allows trusted subclasses to substitute the specified original object with a new object.
WriteClassDescriptor(ObjectStreamClass)
Writes a class descriptor to the target stream.
WriteObjectOverride(Java.Lang.Object)
Method to be overridden by subclasses to write object to the target stream.
WriteStreamHeader()
Writes the Java.IO.ObjectOutputStream header to the target stream.