-
- All Implemented Interfaces:
public final class DisplayConfiguration
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
DisplayConfiguration.Companion
-
Field Summary
Fields Modifier and Type Field Description private Integer
rowsLimit
private Integer
cellContentLimit
private Function2<DataRow<?>, DataColumn<?>, CellAttributes>
cellFormatter
private Integer
precision
-
Constructor Summary
Constructors Constructor Description DisplayConfiguration(Integer rowsLimit, Integer cellContentLimit, Function2<DataRow<?>, DataColumn<?>, CellAttributes> cellFormatter, Integer precision)
-
Method Summary
Modifier and Type Method Description final Integer
getRowsLimit()
final Unit
setRowsLimit(Integer rowsLimit)
final Integer
getCellContentLimit()
final Unit
setCellContentLimit(Integer cellContentLimit)
final Function2<DataRow<?>, DataColumn<?>, CellAttributes>
getCellFormatter()
final Unit
setCellFormatter(Function2<DataRow<?>, DataColumn<?>, CellAttributes> cellFormatter)
final Integer
getPrecision()
final Unit
setPrecision(Integer precision)
-
-
Constructor Detail
-
DisplayConfiguration
DisplayConfiguration(Integer rowsLimit, Integer cellContentLimit, Function2<DataRow<?>, DataColumn<?>, CellAttributes> cellFormatter, Integer precision)
-
-
Method Detail
-
getRowsLimit
final Integer getRowsLimit()
-
setRowsLimit
final Unit setRowsLimit(Integer rowsLimit)
-
getCellContentLimit
final Integer getCellContentLimit()
-
setCellContentLimit
final Unit setCellContentLimit(Integer cellContentLimit)
-
getCellFormatter
final Function2<DataRow<?>, DataColumn<?>, CellAttributes> getCellFormatter()
-
setCellFormatter
final Unit setCellFormatter(Function2<DataRow<?>, DataColumn<?>, CellAttributes> cellFormatter)
-
getPrecision
final Integer getPrecision()
-
setPrecision
final Unit setPrecision(Integer precision)
-
-
-
-