Java.IO.IObjectInput Members

The members of Java.IO.IObjectInput are listed below.

Public Methods

Available() : int
Indicates the number of bytes of primitive data that can be read without blocking.
Close()
Closes this stream.
Read() : int
Reads a single byte from this stream and returns it as an integer in the range from 0 to 255.
Read(byte[]) : int
Reads bytes from this stream into the byte array buffer.
Read(byte[], int, int) : int
Reads up to byteCount bytes from this stream and stores them in byte array buffer starting at offset byteOffset.
ReadObject() : Java.Lang.Object
Reads the next object from this stream.
Skip(long) : long
Skips byteCount bytes on this stream.