Class RowPaddingStrategies
java.lang.Object
org.vaadin.miki.superfields.itemgrid.RowPaddingStrategies
Container class for typical
RowPaddingStrategy variants.- Since:
- 2020-12-15
- Author:
- miki
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final RowPaddingStrategyIndicates padding at the beginning of the first row.static final RowPaddingStrategyIndicates padding at the end of the first row.static final RowPaddingStrategyIndicates last row should be centred, with optional extra empty cell put at the beginning.static final RowPaddingStrategyIndicates last row should be centred, with optional extra empty cell put at the end.static final RowPaddingStrategyIndicates padding at the beginning of the last row.static final RowPaddingStrategyIndicates padding at the end of the last row.static final RowPaddingStrategyIndicates no padding at all (no empty cells generated). -
Method Summary
-
Field Details
-
NO_PADDING
Indicates no padding at all (no empty cells generated). -
LAST_ROW_FILL_END
Indicates padding at the end of the last row. -
LAST_ROW_FILL_BEGINNING
Indicates padding at the beginning of the last row. -
LAST_ROW_CENTRE_BEGINNING
Indicates last row should be centred, with optional extra empty cell put at the beginning. -
LAST_ROW_CENTRE_END
Indicates last row should be centred, with optional extra empty cell put at the end. -
FIRST_ROW_FILL_END
Indicates padding at the end of the first row. -
FIRST_ROW_FILL_BEGINNING
Indicates padding at the beginning of the first row.
-