Uses of Class
org.vaadin.firitin.fields.internalhtmltable.TableColumn
Packages that use TableColumn
-
Uses of TableColumn in org.vaadin.firitin.fields.internalhtmltable
Methods in org.vaadin.firitin.fields.internalhtmltable that return TableColumnModifier 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.Methods in org.vaadin.firitin.fields.internalhtmltable that return types with arguments of type TableColumnModifier 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.Methods in org.vaadin.firitin.fields.internalhtmltable with parameters of type TableColumnModifier 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.