Package com.esotericsoftware.kryo.io
Class KryoDataInput
- java.lang.Object
-
- com.esotericsoftware.kryo.io.KryoDataInput
-
- All Implemented Interfaces:
java.io.DataInput,java.lang.AutoCloseable
- Direct Known Subclasses:
KryoObjectInput
public class KryoDataInput extends java.lang.Object implements java.io.DataInput, java.lang.AutoCloseableADataInputwhich reads from anInput.readLine()is unsupported. Other methods behave slightly differently, egreadUTF()may return a null string.- Author:
- Robert DiFalco
-
-
Constructor Summary
Constructors Constructor Description KryoDataInput(Input input)
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidclose()booleanreadBoolean()bytereadByte()charreadChar()doublereadDouble()floatreadFloat()voidreadFully(byte[] b)voidreadFully(byte[] b, int off, int len)intreadInt()java.lang.StringreadLine()Deprecated.this method is not supported in this implementation.longreadLong()shortreadShort()intreadUnsignedByte()intreadUnsignedShort()java.lang.StringreadUTF()Reads the length and string of UTF8 characters, or null.voidsetInput(Input input)intskipBytes(int n)
-
-
-
Field Detail
-
input
protected Input input
-
-
Constructor Detail
-
KryoDataInput
public KryoDataInput(Input input)
-
-
Method Detail
-
setInput
public void setInput(Input input)
-
readFully
public void readFully(byte[] b) throws java.io.IOException- Specified by:
readFullyin interfacejava.io.DataInput- Throws:
java.io.IOException
-
readFully
public void readFully(byte[] b, int off, int len) throws java.io.IOException- Specified by:
readFullyin interfacejava.io.DataInput- Throws:
java.io.IOException
-
skipBytes
public int skipBytes(int n) throws java.io.IOException- Specified by:
skipBytesin interfacejava.io.DataInput- Throws:
java.io.IOException
-
readBoolean
public boolean readBoolean() throws java.io.IOException- Specified by:
readBooleanin interfacejava.io.DataInput- Throws:
java.io.IOException
-
readByte
public byte readByte() throws java.io.IOException- Specified by:
readBytein interfacejava.io.DataInput- Throws:
java.io.IOException
-
readUnsignedByte
public int readUnsignedByte() throws java.io.IOException- Specified by:
readUnsignedBytein interfacejava.io.DataInput- Throws:
java.io.IOException
-
readShort
public short readShort() throws java.io.IOException- Specified by:
readShortin interfacejava.io.DataInput- Throws:
java.io.IOException
-
readUnsignedShort
public int readUnsignedShort() throws java.io.IOException- Specified by:
readUnsignedShortin interfacejava.io.DataInput- Throws:
java.io.IOException
-
readChar
public char readChar() throws java.io.IOException- Specified by:
readCharin interfacejava.io.DataInput- Throws:
java.io.IOException
-
readInt
public int readInt() throws java.io.IOException- Specified by:
readIntin interfacejava.io.DataInput- Throws:
java.io.IOException
-
readLong
public long readLong() throws java.io.IOException- Specified by:
readLongin interfacejava.io.DataInput- Throws:
java.io.IOException
-
readFloat
public float readFloat() throws java.io.IOException- Specified by:
readFloatin interfacejava.io.DataInput- Throws:
java.io.IOException
-
readDouble
public double readDouble() throws java.io.IOException- Specified by:
readDoublein interfacejava.io.DataInput- Throws:
java.io.IOException
-
readLine
public java.lang.String readLine() throws java.lang.UnsupportedOperationExceptionDeprecated.this method is not supported in this implementation.Not implemented.- Specified by:
readLinein interfacejava.io.DataInput- Throws:
java.lang.UnsupportedOperationException- when called.
-
readUTF
public java.lang.String readUTF() throws java.io.IOExceptionReads the length and string of UTF8 characters, or null. This can read strings written byKryoDataOutput.writeUTF(String),Output.writeString(String), andOutput.writeAscii(String).- Specified by:
readUTFin interfacejava.io.DataInput- Returns:
- May be null.
- Throws:
java.io.IOException
-
close
public void close() throws java.lang.Exception- Specified by:
closein interfacejava.lang.AutoCloseable- Throws:
java.lang.Exception
-
-