Class RowPaddingStrategies
- java.lang.Object
-
- org.vaadin.miki.superfields.itemgrid.RowPaddingStrategies
-
public final class RowPaddingStrategies extends Object
Container class for typicalRowPaddingStrategyvariants.- Since:
- 2020-12-15
- Author:
- miki
-
-
Field Summary
Fields Modifier and Type Field Description static RowPaddingStrategyFIRST_ROW_FILL_BEGINNINGIndicates padding at the beginning of the first row.static RowPaddingStrategyFIRST_ROW_FILL_ENDIndicates padding at the end of the first row.static RowPaddingStrategyLAST_ROW_CENTRE_BEGINNINGIndicates last row should be centred, with optional extra empty cell put at the beginning.static RowPaddingStrategyLAST_ROW_CENTRE_ENDIndicates last row should be centred, with optional extra empty cell put at the end.static RowPaddingStrategyLAST_ROW_FILL_BEGINNINGIndicates padding at the beginning of the last row.static RowPaddingStrategyLAST_ROW_FILL_ENDIndicates padding at the end of the last row.static RowPaddingStrategyNO_PADDINGIndicates no padding at all (no empty cells generated).
-
-
-
Field Detail
-
NO_PADDING
public static final RowPaddingStrategy NO_PADDING
Indicates no padding at all (no empty cells generated).
-
LAST_ROW_FILL_END
public static final RowPaddingStrategy LAST_ROW_FILL_END
Indicates padding at the end of the last row.
-
LAST_ROW_FILL_BEGINNING
public static final RowPaddingStrategy LAST_ROW_FILL_BEGINNING
Indicates padding at the beginning of the last row.
-
LAST_ROW_CENTRE_BEGINNING
public static final RowPaddingStrategy LAST_ROW_CENTRE_BEGINNING
Indicates last row should be centred, with optional extra empty cell put at the beginning.
-
LAST_ROW_CENTRE_END
public static final RowPaddingStrategy LAST_ROW_CENTRE_END
Indicates last row should be centred, with optional extra empty cell put at the end.
-
FIRST_ROW_FILL_END
public static final RowPaddingStrategy FIRST_ROW_FILL_END
Indicates padding at the end of the first row.
-
FIRST_ROW_FILL_BEGINNING
public static final RowPaddingStrategy FIRST_ROW_FILL_BEGINNING
Indicates padding at the beginning of the first row.
-
-