Class Cell
- java.lang.Object
-
- org.apache.sysds.runtime.controlprogram.parfor.util.Cell
-
public class Cell extends Object
Helper class for representing text cell and binary cell records in order to allow for buffering and buffered read/write. NOTE: could be replaced by IJV.class but used in order to ensure independence.
-
-
Constructor Summary
Constructors Constructor Description Cell(long r, long c, double v)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getCol()
long
getRow()
double
getValue()
void
setCol(long col)
void
setRow(long row)
void
setValue(double value)
-