Class java.io.ObjectInputStream (1.1)


public class ObjectInputStream extends InputStream implements ObjectInput, ObjectStreamConstants {
  // Public Constructor
    public ObjectInputStream(InputStream in) throws IOException, StreamCorruptedException;
  // Public Instance Methods
    public int available( ) throws IOException;  // Defines InputStream.available( )
    public void close( ) throws IOException;  // Overrides InputStream.close( )
    public final void defaultReadObject( ) throws IOException, ClassNotFoundException, NotActiveException;
    public int read( ) throws IOException;  // Defines InputStream.read( )
    public int read(byte[ ] data, int offset, int length) throws IOException;  // Overrides InputStream.read( )
    public boolean readBoolean( ) throws IOException, EOFException;
    public byte readByte( ) throws IOException, EOFException;
    public char readChar( ) throws IOException, EOFException;
    public double readDouble( ) throws IOException, EOFException;
    public float readFloat( ) throws IOException, EOFException;
    public void readFully(byte[ ] data) throws IOException, EOFException;
    public void readFully(byte[ ] data, int offset, int size) throws IOException, EOFException;
    public int readInt( ) throws IOException, EOFException;
    public String readLine( ) throws IOException;
    public long readLong( ) throws IOException, EOFException;
    public final Object readObject( ) throws OptionalDataException, ClassNotFoundException, IOException, InvalidClassException, StreamCorruptedException;
    public short readShort( ) throws IOException, EOFException;
    public String readUTF( ) throws IOException;
    public int readUnsignedByte( ) throws IOException, EOFException;
    public int readUnsignedShort( ) throws IOException, EOFException;
    public synchronized void registerValidation(ObjectInputValidation obj, int prio) throws NotActiveException, InvalidObjectException;
    public int skipBytes(int len) throws IOException, EOFException;
  // Protected Instance Methods
    protected final boolean enableResolveObject(boolean enable) throws SecurityException;
    protected void readStreamHeader( ) throws IOException, StreamCorruptedException;
    protected Class resolveClass(ObjectStreamClass v) throws IOException, ClassNotFoundException;
    protected Object resolveObject(Object obj) throws IOException;
}