Uses of Interface
java.io.ObjectOutput
Packages that use ObjectOutput
Package
Description
Provides interfaces and classes for transferring data between and within
applications.
Provides for system input and output through data streams,
serialization and the file system.
Provides classes and interfaces for supporting the server side of RMI.
Provides the classes which implement advanced dynamic
loading.
Provides implementation support for building JShell execution engines.
-
Uses of ObjectOutput in java.awt.datatransfer
Methods in java.awt.datatransfer with parameters of type ObjectOutputModifier and TypeMethodDescriptionvoid
DataFlavor.writeExternal(ObjectOutput os)
Serializes thisDataFlavor
. -
Uses of ObjectOutput in java.io
Classes in java.io that implement ObjectOutputModifier and TypeClassDescriptionclass
An ObjectOutputStream writes primitive data types and graphs of Java objects to an OutputStream.Methods in java.io with parameters of type ObjectOutputModifier and TypeMethodDescriptionabstract void
ObjectOutputStream.PutField.write(ObjectOutput out)
Deprecated.void
Externalizable.writeExternal(ObjectOutput out)
The object implements the writeExternal method to save its contents by calling the methods of DataOutput for its primitive values or calling the writeObject method of ObjectOutput for objects, strings, and arrays. -
Uses of ObjectOutput in java.rmi.server
Methods in java.rmi.server that return ObjectOutputModifier and TypeMethodDescriptionRemoteCall.getOutputStream()
Deprecated.no replacementRemoteCall.getResultStream(boolean success)
Deprecated.no replacementMethods in java.rmi.server with parameters of type ObjectOutputModifier and TypeMethodDescriptionRemoteRef.getRefClass(ObjectOutput out)
Returns the class name of the ref type to be serialized onto the stream 'out'.void
ObjID.write(ObjectOutput out)
Marshals a binary representation of thisObjID
to anObjectOutput
instance. -
Uses of ObjectOutput in javax.management.loading
Methods in javax.management.loading with parameters of type ObjectOutputModifier and TypeMethodDescriptionvoid
MLet.writeExternal(ObjectOutput out)
Save this MLet's contents to the givenObjectOutput
. -
Uses of ObjectOutput in jdk.jshell.execution
Methods in jdk.jshell.execution with parameters of type ObjectOutputModifier and TypeMethodDescriptionstatic void
Util.forwardExecutionControl(ExecutionControl ec, ObjectInput in, ObjectOutput out)
Forward commands from the input to the specifiedExecutionControl
instance, then responses back on the output.Method parameters in jdk.jshell.execution with type arguments of type ObjectOutputModifier and TypeMethodDescriptionstatic ExecutionControl
Util.remoteInputOutput(InputStream input, OutputStream output, Map<String,OutputStream> outputStreamMap, Map<String,InputStream> inputStreamMap, BiFunction<ObjectInput,ObjectOutput,ExecutionControl> factory)
Creates an ExecutionControl for given packetized input and output.Constructors in jdk.jshell.execution with parameters of type ObjectOutputModifierConstructorDescriptionprotected
JdiExecutionControl(ObjectOutput out, ObjectInput in)
Create an instance.StreamingExecutionControl(ObjectOutput out, ObjectInput in)
Creates an instance.
PutField
object in a proper format, and may result in corruption of the serialization stream.