Package com.pixelmed.dicom
Class CompressedFrameDecoder.ByteArrayInputStreamWithOffsetCounterAndOurMethods
- java.lang.Object
-
- java.io.InputStream
-
- com.pixelmed.dicom.CompressedFrameDecoder.ByteArrayInputStreamWithOffsetCounterAndOurMethods
-
- All Implemented Interfaces:
java.io.Closeable
,java.lang.AutoCloseable
- Enclosing class:
- CompressedFrameDecoder
protected class CompressedFrameDecoder.ByteArrayInputStreamWithOffsetCounterAndOurMethods extends java.io.InputStream
-
-
Constructor Summary
Constructors Constructor Description ByteArrayInputStreamWithOffsetCounterAndOurMethods(byte[] buf)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
available()
int
getOffsetOfNextByteToReadFromStartOfFragment()
boolean
markSupported()
int
read()
int
read(byte[] b, int off, int len)
long
readUnsigned32LittleEndian()
void
readUnsigned32LittleEndian(long[] w, int offset, int len)
long
skip(long n)
void
skipInsistently(long length)
-
-
-
Method Detail
-
read
public int read()
- Specified by:
read
in classjava.io.InputStream
-
read
public int read(byte[] b, int off, int len)
- Overrides:
read
in classjava.io.InputStream
-
skip
public long skip(long n)
- Overrides:
skip
in classjava.io.InputStream
-
available
public int available()
- Overrides:
available
in classjava.io.InputStream
-
markSupported
public boolean markSupported()
- Overrides:
markSupported
in classjava.io.InputStream
-
readUnsigned32LittleEndian
public final long readUnsigned32LittleEndian()
-
readUnsigned32LittleEndian
public final void readUnsigned32LittleEndian(long[] w, int offset, int len) throws java.io.IOException
- Throws:
java.io.IOException
-
skipInsistently
public void skipInsistently(long length) throws java.io.IOException
- Throws:
java.io.IOException
-
getOffsetOfNextByteToReadFromStartOfFragment
public int getOffsetOfNextByteToReadFromStartOfFragment()
-
-