Package org.teavm.cache
Class VarDataInput
- java.lang.Object
-
- org.teavm.cache.VarDataInput
-
public class VarDataInput extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description VarDataInput(java.io.InputStream input)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Stringread()byte[]readBytes()doublereadDouble()floatreadFloat()intreadSigned()longreadSignedLong()intreadUnsigned()longreadUnsignedLong()
-
-
-
Method Detail
-
readUnsigned
public int readUnsigned() throws java.io.IOException- Throws:
java.io.IOException
-
readSigned
public int readSigned() throws java.io.IOException- Throws:
java.io.IOException
-
readUnsignedLong
public long readUnsignedLong() throws java.io.IOException- Throws:
java.io.IOException
-
readSignedLong
public long readSignedLong() throws java.io.IOException- Throws:
java.io.IOException
-
readFloat
public float readFloat() throws java.io.IOException- Throws:
java.io.IOException
-
readDouble
public double readDouble() throws java.io.IOException- Throws:
java.io.IOException
-
read
public java.lang.String read() throws java.io.IOException- Throws:
java.io.IOException
-
readBytes
public byte[] readBytes() throws java.io.IOException- Throws:
java.io.IOException
-
-