Interface ExpressionDataPrimitiveIntMatrix
-
- All Superinterfaces:
ExpressionDataMatrix<Integer>
- All Known Implementing Classes:
SingleCellExpressionDataIntMatrix
public interface ExpressionDataPrimitiveIntMatrix extends ExpressionDataMatrix<Integer>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getAsInt(int row, int column)
Retrieve the value at the given row and column without boxing.int[]
getColumnAsInts(int column)
Retrieve the given column without boxing.int[]
getRowAsInts(int index)
Retrieve a row without boxing.int[]
getRowAsInts(CompositeSequence designElement)
Retrieve the row for the given design element without boxing.-
Methods inherited from interface ubic.gemma.core.datastructure.matrix.ExpressionDataMatrix
columns, get, getColumn, getDesignElementForRow, getDesignElements, getExpressionExperiment, getRow, getRow, getRowElement, getRowElement, getRowElements, getRowIndex, rows
-
-
-
-
Method Detail
-
getAsInt
int getAsInt(int row, int column)
Retrieve the value at the given row and column without boxing.- See Also:
ExpressionDataMatrix.get(int, int)
-
getRowAsInts
int[] getRowAsInts(int index)
Retrieve a row without boxing.- See Also:
ExpressionDataMatrix.getRow(int)
-
getRowAsInts
@Nullable int[] getRowAsInts(CompositeSequence designElement)
Retrieve the row for the given design element without boxing.
-
getColumnAsInts
int[] getColumnAsInts(int column)
Retrieve the given column without boxing.- See Also:
ExpressionDataMatrix.getColumn(int)
-
-