Java in a Nutshell Online Quick Reference for Java 1.1

INTERFACE java.io.ObjectInput

Availability: JDK 1.1

public abstract interface ObjectInput extends DataInput {
   // Public Instance Methods
      public abstract int available() throws IOException;
      public abstract void close() throws IOException;
      public abstract int read() throws IOException;
      public abstract int read(byte[] b) throws IOException;
      public abstract int read(byte[] b, int off, int len) throws IOException;
      public abstract Object readObject() throws ClassNotFoundException, IOException;
      public abstract long skip(long n) throws IOException;
}
Implemented By:
ObjectInputStream.
Passed To:
Externalizable.readExternal(), ObjID.read().
Returned By:
RemoteCall.getInputStream().

Java in a Nutshell Online Quick Reference for Java 1.1
Created by David Flanagan. Copyright © 1997 by O'Reilly & Associates.