public class ObjectDataInputStream extends InputStream implements ObjectDataInput, Closeable
Constructor and Description |
---|
ObjectDataInputStream(InputStream in,
SerializationService serializationService) |
Modifier and Type | Method and Description |
---|---|
int |
available() |
void |
close() |
ByteOrder |
getByteOrder() |
ClassLoader |
getClassLoader()
Returns class loader that internally used for objects
|
void |
mark(int readlimit) |
boolean |
markSupported() |
int |
read() |
int |
read(byte[] b) |
int |
read(byte[] b,
int off,
int len) |
boolean |
readBoolean() |
boolean[] |
readBooleanArray() |
byte |
readByte() |
byte[] |
readByteArray() |
char |
readChar() |
char[] |
readCharArray() |
Data |
readData() |
double |
readDouble() |
double[] |
readDoubleArray() |
float |
readFloat() |
float[] |
readFloatArray() |
void |
readFully(byte[] b) |
void |
readFully(byte[] b,
int off,
int len) |
int |
readInt() |
int[] |
readIntArray() |
String |
readLine()
Deprecated.
|
long |
readLong() |
long[] |
readLongArray() |
Object |
readObject() |
short |
readShort() |
short[] |
readShortArray() |
int |
readUnsignedByte() |
int |
readUnsignedShort() |
String |
readUTF() |
String[] |
readUTFArray() |
void |
reset() |
long |
skip(long n) |
int |
skipBytes(int n) |
public ObjectDataInputStream(InputStream in, SerializationService serializationService)
public int read() throws IOException
read
in class InputStream
IOException
public long skip(long n) throws IOException
skip
in class InputStream
IOException
public int available() throws IOException
available
in class InputStream
IOException
public int read(byte[] b) throws IOException
read
in class InputStream
IOException
public int read(byte[] b, int off, int len) throws IOException
read
in class InputStream
IOException
public void readFully(byte[] b) throws IOException
readFully
in interface DataInput
IOException
public void readFully(byte[] b, int off, int len) throws IOException
readFully
in interface DataInput
IOException
public int skipBytes(int n) throws IOException
skipBytes
in interface DataInput
IOException
public boolean readBoolean() throws IOException
readBoolean
in interface DataInput
IOException
public byte readByte() throws IOException
readByte
in interface DataInput
IOException
public int readUnsignedByte() throws IOException
readUnsignedByte
in interface DataInput
IOException
public short readShort() throws IOException
readShort
in interface DataInput
IOException
public int readUnsignedShort() throws IOException
readUnsignedShort
in interface DataInput
IOException
public char readChar() throws IOException
readChar
in interface DataInput
IOException
public int readInt() throws IOException
readInt
in interface DataInput
IOException
public long readLong() throws IOException
readLong
in interface DataInput
IOException
public float readFloat() throws IOException
readFloat
in interface DataInput
IOException
public double readDouble() throws IOException
readDouble
in interface DataInput
IOException
public byte[] readByteArray() throws IOException
readByteArray
in interface ObjectDataInput
IOException
- if it reaches end of file before finish readingpublic boolean[] readBooleanArray() throws IOException
readBooleanArray
in interface ObjectDataInput
IOException
- if it reaches end of file before finish readingpublic char[] readCharArray() throws IOException
readCharArray
in interface ObjectDataInput
IOException
- if it reaches end of file before finish readingpublic int[] readIntArray() throws IOException
readIntArray
in interface ObjectDataInput
IOException
- if it reaches end of file before finish readingpublic long[] readLongArray() throws IOException
readLongArray
in interface ObjectDataInput
IOException
- if it reaches end of file before finish readingpublic double[] readDoubleArray() throws IOException
readDoubleArray
in interface ObjectDataInput
IOException
- if it reaches end of file before finish readingpublic float[] readFloatArray() throws IOException
readFloatArray
in interface ObjectDataInput
IOException
- if it reaches end of file before finish readingpublic short[] readShortArray() throws IOException
readShortArray
in interface ObjectDataInput
IOException
- if it reaches end of file before finish readingpublic String[] readUTFArray() throws IOException
readUTFArray
in interface ObjectDataInput
IOException
- if it reaches end of file before finish reading@Deprecated public String readLine() throws IOException
readLine
in interface DataInput
IOException
public String readUTF() throws IOException
readUTF
in interface DataInput
IOException
public void close() throws IOException
close
in interface Closeable
close
in interface AutoCloseable
close
in class InputStream
IOException
public void mark(int readlimit)
mark
in class InputStream
public void reset() throws IOException
reset
in class InputStream
IOException
public boolean markSupported()
markSupported
in class InputStream
public Object readObject() throws IOException
readObject
in interface ObjectDataInput
IOException
- if it reaches end of file before finish readingpublic Data readData() throws IOException
readData
in interface ObjectDataInput
IOException
- if it reaches end of file before finish readingpublic ClassLoader getClassLoader()
ObjectDataInput
getClassLoader
in interface ObjectDataInput
public ByteOrder getByteOrder()
getByteOrder
in interface ObjectDataInput
Copyright © 2016 Hazelcast, Inc.. All Rights Reserved.