-
-
Method Summary
Modifier and Type |
Method |
Description |
Map<String,@IsVarType Object> |
getColumnByIdentifiers(int column) |
returns the content of a column accessed by index if available, otherwise null.
|
Map<String,@IsVarType Object> |
getColumnByIdentifiers(int column,
int startRow,
int lastRow) |
returns the content of a column accessed by index if available, otherwise null.
|
List<@IsVarType Object> |
getRow(String rowIdentifier) |
returns the content of a row accessed by identifier if available, otherwise null.
|
List<@IsVarType Object> |
getRow(String rowIdentifier,
int startColumn,
int lastColumn) |
returns the content of a row accessed by identifier if available, otherwise null.
|
@IsVarType Object |
getValue(String rowIdentifier,
int column) |
returns the content of a cell accessed by row identifier and row index if available, otherwise null.
|
boolean |
isRowAvailable(String rowIdentifier) |
checks the availability of a row identifier
|
String |
rowLabel(int row) |
returns the label of the given row.
|
List<String> |
rowLabels() |
returns a list of all available rows.
|
int |
rows() |
returns the number of rows (except vertical header).
|
Methods inherited from interface omix.lang.data.Table
columns, getColumn, getColumn, getIdentifier, getRow, getRow, getSelection, getSourceIdentifier, getValue, toHorizontalHeaderTable, toHVHeadersTable, toPlainTable, toVerticalHeaderTable, transposed
-
Method Details
-
int rows()
returns the number of rows (except vertical header).
- Specified by:
rows
in interface Table
- Returns:
- rows
-
boolean isRowAvailable(
String rowIdentifier)
checks the availability of a row identifier
- Parameters:
rowIdentifier
-
- Returns:
- availability
-
returns a list of all available rows.
- Returns:
- row list
-
returns the label of the given row.
- Parameters:
row
-
- Returns:
- label
-
returns the content of a cell accessed by row identifier and row index if available, otherwise null.
- Parameters:
rowIdentifier
-
column
-
- Returns:
- cell content
-
returns the content of a row accessed by identifier if available, otherwise null.
- Parameters:
rowIdentifier
-
- Returns:
- row content
-
returns the content of a row accessed by identifier if available, otherwise null.
- Parameters:
rowIdentifier
-
startColumn
-
lastColumn
-
- Returns:
- row content
-
returns the content of a column accessed by index if available, otherwise null.
- Parameters:
column
-
- Returns:
- row content
-
returns the content of a column accessed by index if available, otherwise null.
- Parameters:
column
-
startRow
-
lastRow
-
- Returns:
- row content