public class DataInputDeserializer extends Object implements DataInputView
DataInput interface.| Constructor and Description |
|---|
DataInputDeserializer() |
DataInputDeserializer(byte[] buffer,
int start,
int len) |
DataInputDeserializer(ByteBuffer buffer) |
| Modifier and Type | Method and Description |
|---|---|
int |
read(byte[] b) |
int |
read(byte[] b,
int off,
int len) |
boolean |
readBoolean() |
byte |
readByte() |
char |
readChar() |
double |
readDouble() |
float |
readFloat() |
void |
readFully(byte[] b) |
void |
readFully(byte[] b,
int off,
int len) |
int |
readInt() |
String |
readLine() |
long |
readLong() |
short |
readShort() |
int |
readUnsignedByte() |
int |
readUnsignedShort() |
String |
readUTF() |
void |
setBuffer(byte[] buffer,
int start,
int len) |
void |
setBuffer(ByteBuffer buffer) |
int |
skipBytes(int n) |
void |
skipBytesToRead(int numBytes) |
public DataInputDeserializer()
public DataInputDeserializer(byte[] buffer,
int start,
int len)
public DataInputDeserializer(ByteBuffer buffer)
public void setBuffer(ByteBuffer buffer)
public void setBuffer(byte[] buffer,
int start,
int len)
public boolean readBoolean()
throws IOException
readBoolean in interface DataInputIOExceptionpublic byte readByte()
throws IOException
readByte in interface DataInputIOExceptionpublic char readChar()
throws IOException
readChar in interface DataInputIOExceptionpublic double readDouble()
throws IOException
readDouble in interface DataInputIOExceptionpublic float readFloat()
throws IOException
readFloat in interface DataInputIOExceptionpublic void readFully(byte[] b)
throws IOException
readFully in interface DataInputIOExceptionpublic void readFully(byte[] b,
int off,
int len)
throws IOException
readFully in interface DataInputIOExceptionpublic int readInt()
throws IOException
readInt in interface DataInputIOExceptionpublic String readLine() throws IOException
readLine in interface DataInputIOExceptionpublic long readLong()
throws IOException
readLong in interface DataInputIOExceptionpublic short readShort()
throws IOException
readShort in interface DataInputIOExceptionpublic String readUTF() throws IOException
readUTF in interface DataInputIOExceptionpublic int readUnsignedByte()
throws IOException
readUnsignedByte in interface DataInputIOExceptionpublic int readUnsignedShort()
throws IOException
readUnsignedShort in interface DataInputIOExceptionpublic int skipBytes(int n)
throws IOException
skipBytes in interface DataInputIOExceptionpublic void skipBytesToRead(int numBytes)
throws IOException
skipBytesToRead in interface DataInputViewIOExceptionpublic int read(byte[] b,
int off,
int len)
throws IOException
read in interface DataInputViewIOExceptionpublic int read(byte[] b)
throws IOException
read in interface DataInputViewIOExceptionCopyright © 2014 The Apache Software Foundation. All rights reserved.