Class TadukooTable.TadukooTableBuilder
java.lang.Object
com.github.tadukoo.view.components.TadukooTable.TadukooTableBuilder
- Enclosing class:
- TadukooTable
Builder to be used to create a
TadukooTable
. It has the following parameters:
Name | Description | Default Value or Required |
---|---|---|
keyOrder | The order of the keys in the table - can be null to use the pojos in the data | Defaults to null (to use the pojos in the data) |
data | The data to be put in the table | Defaults to null |
-
Field Summary
-
Constructor Summary
ModifierConstructorDescriptionprivate
Can't create outside of Tadukoo Table -
Method Summary
-
Field Details
-
keyOrder
The order of the keys in the table - can be null to use the pojos in the data -
data
The data to be put in the table
-
-
Constructor Details
-
TadukooTableBuilder
private TadukooTableBuilder()Can't create outside of Tadukoo Table
-
-
Method Details
-
keyOrder
- Parameters:
keyOrder
- The order of the keys in the table - can be null to use the pojos in the data- Returns:
- this, to continue building
-
data
public TadukooTable.TadukooTableBuilder data(List<com.github.tadukoo.util.pojo.OrderedMappedPojo> data) - Parameters:
data
- The data to be put in the table- Returns:
- this, to continue building
-
build
Builds theTadukooTable
- Returns:
- A newly created
TadukooTable
-