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