Modifier and Type | Interface and Description |
---|---|
interface |
Column<C extends Column<C>>
Represents the metadata for a column component.
|
Constructor and Description |
---|
ColumnList(Collection<? extends Column<?>> c) |
Modifier and Type | Method and Description |
---|---|
default Column<?> |
Grid.getColumn(String name)
Retrieves the column with the given property name, if it exists.
|
Modifier and Type | Method and Description |
---|---|
default Optional<Column<?>> |
Grid.findColumn(String name)
Finds the column with the given property name.
|
Modifier and Type | Method and Description |
---|---|
default G |
Grid.addColumn(Column<?> column)
Adds a column to this grid.
|
default G |
Grid.addColumn(String name,
Column<?> column)
Adds a column with the given property name to this grid.
|
Modifier and Type | Method and Description |
---|---|
default G |
Grid.addColumns(Collection<Column<?>> columns)
Adds a collection of columns to this grid.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ConditionalColumn<C extends ConditionalColumn<C>>
Deprecated.
please use
DynamicColumn |
interface |
DateColumn<C extends DateColumn<C>> |
interface |
DynamicColumn<C extends DynamicColumn<C>>
Builder that is used for building
ColumnTypes.DYNAMIC type column components. |
interface |
EmbeddedListColumn<C extends EmbeddedListColumn<C>>
Builder that is used for building
ColumnTypes.EMBEDDED_LIST type column components. |
interface |
EnumColumn<C extends EnumColumn<C>> |
interface |
LinkColumn<C extends LinkColumn<C>> |
interface |
MoneyColumn<C extends MoneyColumn<C>>
Represents the metadata for a column that displays a monetary amount.
|
interface |
ProgressColumn<C extends ProgressColumn<C>>
The column type that is used to render the progress in percentage.
|
interface |
ThumbnailColumn<C extends ThumbnailColumn<C>>
Represents the metadata for a
ColumnTypes.THUMBNAIL . |
Modifier and Type | Class and Description |
---|---|
class |
AbstractColumn<C extends AbstractColumn<C>>
The abstract column component specification.
|
class |
DefaultColumn |
class |
DefaultConditionalColumn
The default implementation for
ConditionalColumn . |
class |
DefaultDateColumn |
class |
DefaultDynamicColumn
The default implementation for
DynamicColumn . |
class |
DefaultEmbeddedListColumn
The default implementation for
EmbeddedListColumn . |
class |
DefaultEnumArrayColumn |
class |
DefaultEnumColumn |
class |
DefaultLinkColumn |
class |
DefaultMoneyColumn |
class |
DefaultProgressColumn
The default implementation for
ProgressColumn . |
class |
DefaultThumbnailColumn |
Modifier and Type | Method and Description |
---|---|
default C |
DynamicColumn.when(Conditional<?> conditional,
UnaryOperator<Column<?>> fn)
Helper method for adding a new column option with a single conditional.
|
default C |
DynamicColumn.when(List<Conditional<?>> conditionals,
UnaryOperator<Column<?>> fn)
Helper method for adding a new column option with a list of conditionals.
|
Constructor and Description |
---|
AbstractColumn(Column<?> component) |
DefaultColumn(Column<?> component) |
Modifier and Type | Method and Description |
---|---|
default G |
ExportHistoryGrid.addDateCreatedColumn(Column<?> column)
Adds the column to display the export created date in the gird.
|
default G |
ExportHistoryGrid.addNameColumn(Column<?> column)
Adds the column to display the export name in the gird.
|
default G |
ExportHistoryGrid.addStatusColumn(Column<?> column)
Adds the column to display the export status in the gird.
|
Modifier and Type | Method and Description |
---|---|
default G |
ExportHistoryGrid.dateCreatedColumn(UnaryOperator<Column<?>> fn)
Adds the column to display the export created date in the gird.
|
default G |
ExportHistoryGrid.nameColumn(UnaryOperator<Column<?>> fn)
Adds the column to display the export name in the gird.
|
default G |
ExportHistoryGrid.statusColumn(UnaryOperator<Column<?>> fn)
Adds the column to display the export status in the gird.
|
Copyright © 2021. All rights reserved.