Uses of Class
org.vaadin.firitin.fields.internalhtmltable.TableRow
-
Packages that use TableRow Package Description org.vaadin.firitin.fields org.vaadin.firitin.fields.internalhtmltable -
-
Uses of TableRow in org.vaadin.firitin.fields
Methods in org.vaadin.firitin.fields with parameters of type TableRow Modifier and Type Method Description protected voidElementCollectionField. addDeleteButtonColumn(TableRow row, T item) -
Uses of TableRow in org.vaadin.firitin.fields.internalhtmltable
Methods in org.vaadin.firitin.fields.internalhtmltable that return TableRow Modifier and Type Method Description TableRowTable. addRow()Adds a single row instance to this container.default TableRowTableRowContainer. addRow()Adds a single row instance to this container.TableRow[]Table. addRows(int rows)Adds multiple rows to this instance based on the given integer (must be greater than 0).default TableRow[]TableRowContainer. addRows(int rows)Adds multiple rows to this instance based on the given integer (must be greater than 0).TableRowTable. insertRow(int index)Inserts a single row instance at the given index to this container.default TableRowTableRowContainer. insertRow(int index)Inserts a single row instance at the given index to this container.Methods in org.vaadin.firitin.fields.internalhtmltable that return types with arguments of type TableRow Modifier and Type Method Description default Optional<TableRow>TableRowContainer. getRow(int index)Returns the row with the given index or an empty optional, if the index is out of bounds.default List<TableRow>TableRowContainer. getRows()Returns the rows of this instance as a list.Stream<TableRow>Table. streamRows()Returns the rows of this instance as a stream.default Stream<TableRow>TableRowContainer. streamRows()Returns the rows of this instance as a stream.Methods in org.vaadin.firitin.fields.internalhtmltable with parameters of type TableRow Modifier and Type Method Description voidTable. addRows(TableRow... rows)Adds the given list of rows.default voidTableRowContainer. addRows(TableRow... rows)Adds the given rows to this instance.voidTable. insertRows(int index, TableRow... rows)Inserts the given rows at the given index to this instance.default voidTableRowContainer. insertRows(int index, TableRow... rows)Inserts the given rows at the given index to this instance.voidTable. removeRows(TableRow... rows)Removes the given rows from this instance.default voidTableRowContainer. removeRows(TableRow... rows)Removes the given rows from this instance.voidTable. replaceRow(int index, TableRow row)Replaces a single row instance to the given index in this container and replaces the existing row.default voidTableRowContainer. replaceRow(int index, TableRow row)Replaces a single row instance to the given index in this container and replaces the existing row.voidTable. setRow(int index, TableRow row)Replaces a single row instance to the given index in this container and replaces the existing row.default voidTableRowContainer. setRow(int index, TableRow row)Replaces a single row instance to the given index in this container and replaces the existing row.
-