Uses of Interface
java.io.ObjectOutput
Packages that useObjectOutput Package Description java.awt.datatransfer Provides interfaces and classes for transferring data between and within applications.java.io Provides for system input and output through data streams, serialization and the file system.java.rmi.server Provides classes and interfaces for supporting the serverside of RMI.javax.management.loading Provides the classes which implement advanced dynamic loading.jdk.jshell.execution Provides implementation support for building JShell execution engines.Uses ofObjectOutput injava.awt.datatransfer
Methods injava.awt.datatransfer with parameters of typeObjectOutput Modifier and Type Method Description voidDataFlavor. writeExternal(ObjectOutput os)Serializes thisDataFlavor.Uses ofObjectOutput injava.io
Classes injava.io that implementObjectOutput Modifier and Type Class Description classObjectOutputStreamAn ObjectOutputStream writes primitive data types and graphs of Java objects to an OutputStream.Methods injava.io with parameters of typeObjectOutput Modifier and Type Method Description abstract voidObjectOutputStream.PutField. write(ObjectOutput out)Deprecated.This method does not write the values contained by thisPutFieldobject in a proper format, and may result in corruption of the serialization stream.voidExternalizable. 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 ofObjectOutput injava.rmi.server
Methods injava.rmi.server that returnObjectOutput Modifier and Type Method Description ObjectOutputRemoteCall. getOutputStream()Deprecated.no replacementObjectOutputRemoteCall. getResultStream(boolean success)Deprecated.no replacementMethods injava.rmi.server with parameters of typeObjectOutput Modifier and Type Method Description StringRemoteRef. getRefClass(ObjectOutput out)Returns the class name of the ref type to be serialized onto the stream 'out'.voidObjID. write(ObjectOutput out)Marshals a binary representation of thisObjIDto anObjectOutputinstance.Uses ofObjectOutput injavax.management.loading
Methods injavax.management.loading with parameters of typeObjectOutput Modifier and Type Method Description voidMLet. writeExternal(ObjectOutput out)Save this MLet's contents to the givenObjectOutput.Uses ofObjectOutput injdk.jshell.execution
Methods injdk.jshell.execution with parameters of typeObjectOutput Modifier and Type Method Description static voidUtil. forwardExecutionControl(ExecutionControl ec,ObjectInput in,ObjectOutput out)Forward commands from the input to the specifiedExecutionControlinstance, then responses back on the output.Method parameters injdk.jshell.execution with type arguments of typeObjectOutput Modifier and Type Method Description staticExecutionControlUtil. 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 injdk.jshell.execution with parameters of typeObjectOutput Constructor Description JdiExecutionControl(ObjectOutput out,ObjectInput in)Create an instance.StreamingExecutionControl(ObjectOutput out,ObjectInput in)Creates an instance.