Uses of Interface
java.io.ObjectInput

Packages that use ObjectInput
java.beans   
java.io   
 

Uses of ObjectInput in java.beans
 

Classes in java.beans that implement ObjectInput
(package private)  class ObjectInputStreamWithLoader
          This subclass of ObjectInputStream delegates loading of classes to an existing ClassLoader.
 

Uses of ObjectInput in java.io
 

Classes in java.io that implement ObjectInput
 class ObjectInputStream
          An ObjectInputStream deserializes primitive data and objects previously written using an ObjectOutputStream.
 

Methods in java.io with parameters of type ObjectInput
 void Externalizable.readExternal(ObjectInput in)
          The object implements the readExternal method to restore its contents by calling the methods of DataInput for primitive types and readObject for objects, strings and arrays.