Package nom.tam.util
Class BufferedDataInputStream
java.lang.Object
java.io.InputStream
java.io.FilterInputStream
java.io.BufferedInputStream
nom.tam.util.ArrayInputStream
nom.tam.util.FitsInputStream
nom.tam.util.BufferedDataInputStream
- All Implemented Interfaces:
Closeable
,DataInput
,AutoCloseable
,ArrayDataInput
,FitsIO
,InputReader
Deprecated.
-
Field Summary
Fields inherited from class java.io.FilterInputStream
in
Fields inherited from interface nom.tam.util.FitsIO
BITS_OF_1_BYTE, BITS_OF_2_BYTES, BITS_OF_3_BYTES, BITS_OF_4_BYTES, BITS_OF_5_BYTES, BITS_OF_6_BYTES, BITS_OF_7_BYTES, BYTE_1_OF_LONG_MASK, BYTE_2_OF_LONG_MASK, BYTE_3_OF_LONG_MASK, BYTE_4_OF_LONG_MASK, BYTE_MASK, BYTES_IN_BOOLEAN, BYTES_IN_BYTE, BYTES_IN_CHAR, BYTES_IN_DOUBLE, BYTES_IN_FLOAT, BYTES_IN_INTEGER, BYTES_IN_LONG, BYTES_IN_SHORT, DEFAULT_BUFFER_SIZE, HIGH_INTEGER_MASK, INTEGER_MASK, SHORT_MASK, SHORT_OF_LONG_MASK
-
Constructor Summary
ConstructorsConstructorDescriptionDeprecated.Constructs a new buffered FITS input stream with the default buffer size.BufferedDataInputStream
(InputStream i, int bufLength) Deprecated.Constructs a new buffered FITS input stream -
Method Summary
Methods inherited from class nom.tam.util.FitsInputStream
getDecoder, nextChecksum, read, read, read, read, read, read, read, read, read, read, readBoolean, readByte, readChar, readDouble, readFloat, readFully, readFully, readInt, readLine, readLong, readPrimitiveArray, readShort, readUnsignedByte, readUnsignedShort, readUTF, skip, skipAllBytes, skipBytes, toString
Methods inherited from class nom.tam.util.ArrayInputStream
readArrayFully, readImage, readLArray, setDecoder
Methods inherited from class java.io.BufferedInputStream
available, close, mark, markSupported, reset
Methods inherited from class java.io.FilterInputStream
read
Methods inherited from class java.io.InputStream
nullInputStream, readAllBytes, readNBytes, readNBytes, skipNBytes, transferTo
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface nom.tam.util.ArrayDataInput
mark, markSupported, read, read, read, read, read, read, read, read, read, readArray, readArrayFully, readImage, readLArray, reset, skipAllBytes
-
Constructor Details
-
BufferedDataInputStream
Deprecated.Constructs a new buffered FITS input stream- Parameters:
i
- the underlying input streambufLength
- the size of the buffer in bytes
-
BufferedDataInputStream
Deprecated.Constructs a new buffered FITS input stream with the default buffer size.- Parameters:
i
- the underlying input stream
-
FitsInputStream
instead which provides the same functionality with a less misleading name, or else useArrayInputStream
as a base for a more generic implementation for any (non-FITS) encoding.