Uses of Class
org.vaadin.firitin.fields.internalhtmltable.TableColumn
-
Uses of TableColumn in org.vaadin.firitin.fields.internalhtmltable
Modifier and TypeMethodDescriptionTableColumnGroup.addColumn()
Adds a single column instance to this group.TableColumnGroup.addColumns
(int columns) Adds multiple columns to this instance based on the given integer (must be greater than 0).TableColumnGroup.insertColumn
(int index) Inserts a single column instance at the given index to this group.Modifier and TypeMethodDescriptionTableColumnGroup.getColumn
(int index) Returns the column with the given index or an empty optional, if the index is out of bounds.TableColumnGroup.getColumns()
Returns the columns of this instance as a list.TableColumnGroup.streamColumns()
Returns the columns of this instance as a stream.Modifier and TypeMethodDescriptionvoid
TableColumnGroup.addColumns
(TableColumn... columns) Adds the given columns to this instance.void
TableColumnGroup.insertColumns
(int index, TableColumn... columns) Inserts the given columns at the given index to this instance.void
TableColumnGroup.removeColumns
(TableColumn... columns) Removes the given columns from this instance.void
TableColumnGroup.replaceColumn
(int index, TableColumn column) Replaces a single column instance to the given index in this group and replaces the existing column.void
TableColumnGroup.setColumn
(int index, TableColumn column) Replaces a single column instance to the given index in this group and replaces the existing column.