| Modifier and Type | Method and Description |
|---|---|
AgGrid |
build()
Create an AgGrid definition
|
AgGrid.AgGridBuilder |
containedIn(Path container)
optional - define the container of the grid
|
AgGrid.AgGridBuilder |
isStrict()
The assertions will be strict - if there are extra rows, it will fail.
|
AgGrid.AgGridBuilder |
withHeaders(List<String> headers)
The headers of the columns
|
AgGrid.AgGridBuilder |
withoutVirtualization()
without virtualization.
|
AgGrid.AgGridBuilder |
withRowsAsElementProperties(List<Map<String,ElementProperty>> rows)
Define the rows in the table, in order.
|
AgGrid.AgGridBuilder |
withRowsAsElementPropertiesInOrder(List<List<Map.Entry<String,ElementProperty>>> rows)
Define the rows in the table, in order.
|
AgGrid.AgGridBuilder |
withRowsAsStrings(List<Map<String,String>> rows)
Define the rows in the table, in order.
|
AgGrid.AgGridBuilder |
withRowsAsStringsInOrder(List<List<Map.Entry<String,String>>> rows)
Define the rows in the table, in order.
|
public AgGrid.AgGridBuilder withHeaders(List<String> headers)
headers - - the headers of the columnspublic AgGrid.AgGridBuilder withoutVirtualization()
public AgGrid.AgGridBuilder containedIn(Path container)
container - the Path of the container of the gridpublic AgGrid.AgGridBuilder isStrict()
public AgGrid.AgGridBuilder withRowsAsElementPropertiesInOrder(List<List<Map.Entry<String,ElementProperty>>> rows)
rows - - A list of rows, where each row is a map of the
column name to the property that describes the expected contentpublic AgGrid.AgGridBuilder withRowsAsElementProperties(List<Map<String,ElementProperty>> rows)
rows - - A list of rows, where each row is a map of the
column name to the property that describes the expected contentpublic AgGrid.AgGridBuilder withRowsAsStringsInOrder(List<List<Map.Entry<String,String>>> rows)
rows - - A list of rows, where each row is a map of the
column name to the text.public AgGrid.AgGridBuilder withRowsAsStrings(List<Map<String,String>> rows)
rows - - A list of rows, where each row is a map of the
column name to the text.public AgGrid build()
Copyright © 2019. All rights reserved.