public class FastBufferedDataInputStream extends FilterInputStream implements DataInput, MatrixBlockDataInput
Constructor and Description |
---|
FastBufferedDataInputStream(InputStream in) |
FastBufferedDataInputStream(InputStream in,
int size) |
Modifier and Type | Method and Description |
---|---|
boolean |
readBoolean() |
byte |
readByte() |
char |
readChar() |
double |
readDouble() |
long |
readDoubleArray(int len,
double[] varr)
Reads the double array from the data input into the given dense block
and returns the number of non-zeros.
|
float |
readFloat() |
void |
readFully(byte[] b) |
void |
readFully(byte[] b,
int off,
int len) |
int |
readInt() |
String |
readLine() |
long |
readLong() |
short |
readShort() |
long |
readSparseRows(int rlen,
long nnz,
SparseBlock rows)
Reads the sparse rows array from the data input into a sparse block
and returns the number of non-zeros.
|
int |
readUnsignedByte() |
int |
readUnsignedShort() |
String |
readUTF() |
int |
skipBytes(int n) |
available, close, mark, markSupported, read, read, read, reset, skip
public FastBufferedDataInputStream(InputStream in)
public FastBufferedDataInputStream(InputStream in, int size)
public void readFully(byte[] b) throws IOException
readFully
in interface DataInput
IOException
public void readFully(byte[] b, int off, int len) throws IOException
readFully
in interface DataInput
IOException
public int skipBytes(int n) throws IOException
skipBytes
in interface DataInput
IOException
public boolean readBoolean() throws IOException
readBoolean
in interface DataInput
IOException
public byte readByte() throws IOException
readByte
in interface DataInput
IOException
public int readUnsignedByte() throws IOException
readUnsignedByte
in interface DataInput
IOException
public short readShort() throws IOException
readShort
in interface DataInput
IOException
public int readUnsignedShort() throws IOException
readUnsignedShort
in interface DataInput
IOException
public char readChar() throws IOException
readChar
in interface DataInput
IOException
public int readInt() throws IOException
readInt
in interface DataInput
IOException
public long readLong() throws IOException
readLong
in interface DataInput
IOException
public float readFloat() throws IOException
readFloat
in interface DataInput
IOException
public double readDouble() throws IOException
readDouble
in interface DataInput
IOException
public String readLine() throws IOException
readLine
in interface DataInput
IOException
public String readUTF() throws IOException
readUTF
in interface DataInput
IOException
public long readDoubleArray(int len, double[] varr) throws IOException
MatrixBlockDataInput
readDoubleArray
in interface MatrixBlockDataInput
len
- ?varr
- ?IOException
- if IOException occurspublic long readSparseRows(int rlen, long nnz, SparseBlock rows) throws IOException
MatrixBlockDataInput
readSparseRows
in interface MatrixBlockDataInput
rlen
- number of rowsnnz
- number of non-zerosrows
- sparse blockIOException
- if IOExcepton occursCopyright © 2020 The Apache Software Foundation. All rights reserved.