Uses of Class
org.vaadin.firitin.fields.internalhtmltable.TableCell
-
Packages that use TableCell Package Description org.vaadin.firitin.fields.internalhtmltable -
-
Uses of TableCell in org.vaadin.firitin.fields.internalhtmltable
Subclasses of TableCell in org.vaadin.firitin.fields.internalhtmltable Modifier and Type Class Description classTableDataCellRepresents the table data cell element (<td>).classTableHeaderCellRepresents the table header cell element (<th>).Methods in org.vaadin.firitin.fields.internalhtmltable that return types with arguments of type TableCell Modifier and Type Method Description Optional<TableCell>TableRow. getCell(int index)Returns the cell with the given index or an empty optional, if the index is out of bounds.List<TableCell>TableRow. getCells()Returns all cells of this row as a list.Stream<TableCell>TableRow. streamCells()Returns all cells of this row as a stream.Methods in org.vaadin.firitin.fields.internalhtmltable with parameters of type TableCell Modifier and Type Method Description voidTableRow. addCells(TableCell... cells)Adds the given cells to this instance.voidTableRow. removeCells(TableCell... cells)Removes the given cells from this instance.
-