| it.unimi.dsi.fastutil.io.MeasurableInputStream it.unimi.dsi.fastutil.io.FastByteArrayInputStream
Constructor Summary | |
public | FastByteArrayInputStream(byte[] array, int offset, int length) Creates a new array input stream using a given array fragment. | public | FastByteArrayInputStream(byte[] array) Creates a new array input stream using a given array. |
array | public byte[] array(Code) | | The array backing the input stream.
|
offset | public int offset(Code) | | The first valid entry.
|
FastByteArrayInputStream | public FastByteArrayInputStream(byte[] array, int offset, int length)(Code) | | Creates a new array input stream using a given array fragment.
Parameters: array - the backing array. Parameters: offset - the first valid entry of the array. Parameters: length - the number of valid bytes. |
FastByteArrayInputStream | public FastByteArrayInputStream(byte[] array)(Code) | | Creates a new array input stream using a given array.
Parameters: array - the backing array. |
available | public int available()(Code) | | |
close | public void close()(Code) | | Closing a fast byte array input stream has no effect.
|
length | public long length()(Code) | | |
mark | public void mark(int dummy)(Code) | | |
markSupported | public boolean markSupported()(Code) | | |
position | public long position()(Code) | | |
position | public void position(long newPosition)(Code) | | |
reset | public void reset()(Code) | | |
skip | public long skip(long n)(Code) | | |
|
|