Klasse CompressedReader
java.lang.Object
org.aspectj.org.eclipse.jdt.internal.core.builder.CompressedReader
abstraction of DataInputStream
-
Konstruktorübersicht
Konstruktoren -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungbooleanbytereadByte()char[]char[]Reads an array of chars by using this first common chars of the last result.intreadInt()intreadIntInRange(int range) Reads an integer number by only reading its low bytes.intreadIntWithHint(int[] typical) Reads an integer number by decoding its index into the given "typical" Array.longreadLong()
-
Konstruktordetails
-
CompressedReader
-
-
Methodendetails
-
readBoolean
- Löst aus:
IOException- Siehe auch:
-
readByte
- Löst aus:
IOException- Siehe auch:
-
readLong
- Löst aus:
IOException- Siehe auch:
-
readInt
- Löst aus:
IOException- Siehe auch:
-
readChars
- Löst aus:
IOException- Siehe auch:
-
readStringUsingLast
- Löst aus:
IOException- Siehe auch:
-
readStringUsingDictionary
- Löst aus:
IOException- Siehe auch:
-
readIntWithHint
Reads an integer number by decoding its index into the given "typical" Array. If the index is out of bounds decode the plain Integer.- Parameter:
typical- The same range that has been used during writing.- Löst aus:
IOException- Siehe auch:
-
readIntInRange
Reads an integer number by only reading its low bytes. The number of bytes written depends on the given range.- Parameter:
range- The same range that has been used during writing.- Löst aus:
IOException- Siehe auch:
-
readCharsUsingLast
Reads an array of chars by using this first common chars of the last result. The number of common chars is decoded from a single byte. The remaining chars are read using the dictionary.- Löst aus:
IOException- Siehe auch:
-