org.jacoco.core.internal.data
Class CompactDataInput
java.lang.Object
java.io.InputStream
java.io.FilterInputStream
java.io.DataInputStream
org.jacoco.core.internal.data.CompactDataInput
- All Implemented Interfaces:
- Closeable, DataInput
public class CompactDataInput
- extends DataInputStream
Additional data input methods for compact storage of data structures.
- See Also:
CompactDataOutput
|
Method Summary |
boolean[] |
readBooleanArray()
Reads a boolean array. |
int |
readVarInt()
Reads a variable length representation of an integer value. |
| Methods inherited from class java.io.DataInputStream |
read, read, readBoolean, readByte, readChar, readDouble, readFloat, readFully, readFully, readInt, readLine, readLong, readShort, readUnsignedByte, readUnsignedShort, readUTF, readUTF, skipBytes |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
CompactDataInput
public CompactDataInput(InputStream in)
- Creates a new
CompactDataInput that uses the specified underlying
input stream.
- Parameters:
in - underlying input stream
readVarInt
public int readVarInt()
throws IOException
- Reads a variable length representation of an integer value.
- Returns:
- read value
- Throws:
IOException - if thrown by the underlying stream
readBooleanArray
public boolean[] readBooleanArray()
throws IOException
- Reads a boolean array.
- Returns:
- boolean array
- Throws:
IOException - if thrown by the underlying stream
Copyright © 2009-2016 Mountainminds GmbH & Co. KG. All Rights Reserved.