public class KryoDataInput extends Object implements DataInput
DataInput. Currently only readLine() is unsupported. Other methods behave slightly
differently. For example, readUTF() may return a null string.| Constructor and Description |
|---|
KryoDataInput(Input input) |
| Modifier and Type | Method and Description |
|---|---|
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()
Deprecated.
this method is not supported in this implementation.
|
long |
readLong() |
short |
readShort() |
int |
readUnsignedByte() |
int |
readUnsignedShort() |
String |
readUTF()
Reads the length and string of UTF8 characters, or null.
|
void |
setInput(Input input) |
int |
skipBytes(int n) |
protected Input input
public KryoDataInput(Input input)
public void setInput(Input input)
public 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 skipBytes(int n)
throws IOException
skipBytes in interface DataInputIOExceptionpublic boolean readBoolean()
throws IOException
readBoolean in interface DataInputIOExceptionpublic byte readByte()
throws IOException
readByte in interface DataInputIOExceptionpublic int readUnsignedByte()
throws IOException
readUnsignedByte in interface DataInputIOExceptionpublic short readShort()
throws IOException
readShort in interface DataInputIOExceptionpublic int readUnsignedShort()
throws IOException
readUnsignedShort in interface DataInputIOExceptionpublic char readChar()
throws IOException
readChar in interface DataInputIOExceptionpublic int readInt()
throws IOException
readInt in interface DataInputIOExceptionpublic long readLong()
throws IOException
readLong in interface DataInputIOExceptionpublic float readFloat()
throws IOException
readFloat in interface DataInputIOExceptionpublic double readDouble()
throws IOException
readDouble in interface DataInputIOExceptionpublic String readLine() throws UnsupportedOperationException
UnsupportedOperationException
whenever it is called.readLine in interface DataInputUnsupportedOperationException - when called.public String readUTF() throws IOException
KryoDataOutput.writeUTF(String), Output.writeString(String),
Output.writeString(CharSequence), and
Output.writeAscii(String).readUTF in interface DataInputIOExceptionCopyright © 2023. All rights reserved.