Package de.xima.fc.common.data.table
Interface IHeaderTable.ITableRowEntry<T>
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Tcell(int column)Gets the value of the cell in this row at the given column.default Tcell(String column)Gets the value of the cell in this row at the given column.List<T>cells()Gets the values of the cells in the row.List<String>columnNames()Gets the names of the columns.Map<Integer,T>columnsByIndex()Gets a view of the values of the cells in the row as a map.Map<String,T>columnsByName()Gets a view of the values of the cells in the row as a map.default IntegergetKey()Gets the index of this row.default List<T>getValue()Gets the values of the cells in this row.introw()Gets the index of this row.default List<T>setValue(List<T> value)
 
- 
- 
- 
Method Detail- 
celldefault T cell(int column) Gets the value of the cell in this row at the given column.- Parameters:
- column- The index of the column.
- Returns:
- The value of the cell in this row at the given column.
 
 - 
celldefault T cell(String column) Gets the value of the cell in this row at the given column.- Parameters:
- column- The name of the column.
- Returns:
- The value of the cell in this row at the given column.
 
 - 
cellsList<T> cells() Gets the values of the cells in the row.- Returns:
- The values of the cells in the row.
 
 - 
columnNamesList<String> columnNames() Gets the names of the columns.- Returns:
- The names of the columns.
 
 - 
columnsByIndexMap<Integer,T> columnsByIndex() Gets a view of the values of the cells in the row as a map. The keys are the column indices.- Returns:
- A view of the values of the cells in the row as a map.
 
 - 
columnsByNameMap<String,T> columnsByName() Gets a view of the values of the cells in the row as a map. The keys are the column names.- Returns:
- A view of the values of the cells in the row as a map.
 
 - 
getKeydefault Integer getKey() Gets the index of this row.
 - 
rowint row() Gets the index of this row.- Returns:
- The row index.
 
 
- 
 
-