Package java.io
Interface ObjectInput
-
- All Superinterfaces:
DataInput
- All Known Implementing Classes:
ObjectInputStream
public interface ObjectInput extends DataInput
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intavailable()voidclose()intread()intread(byte[] var0)intread(byte[] var0, int var1, int var2)ObjectreadObject()longskip(long var0)-
Methods inherited from interface java.io.DataInput
readBoolean, readByte, readChar, readDouble, readFloat, readFully, readFully, readInt, readLine, readLong, readShort, readUnsignedByte, readUnsignedShort, readUTF, skipBytes
-
-
-
-
Method Detail
-
available
int available() throws IOException- Throws:
IOException
-
close
void close() throws IOException- Throws:
IOException
-
read
int read() throws IOException
- Throws:
IOException
-
read
int read(byte[] var0) throws IOException
- Throws:
IOException
-
read
int read(byte[] var0, int var1, int var2) throws IOException- Throws:
IOException
-
readObject
Object readObject() throws ClassNotFoundException, IOException
- Throws:
ClassNotFoundExceptionIOException
-
skip
long skip(long var0) throws IOException
- Throws:
IOException
-
-