Uses of Interface
com.identityworksllc.iiq.common.table.CellOption
-
Packages that use CellOption Package Description com.identityworksllc.iiq.common.table -
-
Uses of CellOption in com.identityworksllc.iiq.common.table
Methods in com.identityworksllc.iiq.common.table that return CellOption Modifier and Type Method Description static CellOption
CellOptions. addCssClasses(String... classes)
Modifies the given Cell to add the classes listed to the existing liststatic CellOption
CellOptions. colspan(int span)
Modifies the given Cell to have a column span of the given valuestatic CellOption
CellOptions. header()
Modifies the given cell to set it as a header (th vs td)static CellOption
CellOptions. html()
Modifies the given cell to set it as an HTML valuestatic CellOption
CellOptions. rowspan(int span)
Modifies the given cell to set its rowspanstatic CellOption
CellOptions. setCssClasses(String... classes)
Modifies the given Cell to replace the class list with the ones listedstatic CellOption
CellOptions. style(String style)
Modifies the given cell to set its CSS style attributeMethods in com.identityworksllc.iiq.common.table with parameters of type CellOption Modifier and Type Method Description Table
Table. attributeCell(sailpoint.object.Application application, String attribute, CellOption... options)
Adds a new cell to the current row containing the value of the given attribute of the givenLink
.Table
Table. attributeCell(sailpoint.object.Identity identity, String attribute, CellOption... options)
Adds a new cell to the current row containing the value of the given attribute of the givenIdentity
.Table
Table. attributeCell(sailpoint.object.Link link, String attribute, CellOption... options)
Adds a new cell to the current row containing the value of the given attribute of the givenLink
.Table
Table. cell(Object value, CellOption... options)
Adds a new cell to the current row with the given value contentstatic Cell
Cell. of(Object content, CellOption... options)
Constructs a new Cell that can be passed toTable.cell(Cell)
Table
Table. row(List<Object> values, CellOption... options)
Creates a new (non-header) row and populates it with the given cell values.Table
Table. rows(List<Object> rowData, CellOption... cellOptions)
Accepts a set of row data and adds it to the output table.QueryTable
QueryTable. setColumnCellOptions(int column, CellOption... options)
Table
Table. setColumnCellOptions(int column, CellOption... options)
To be used after populating the table: applies the given CellOption modifications to the cells at the given column index in each row.QueryTable
QueryTable. setRowCellOptions(int row, CellOption... options)
Table
Table. setRowCellOptions(int row, CellOption... options)
To be used after populating the table: sets the given style to the given row, indexed starting from zero, including the header row.Table
Table. withCellOptions(CellOption... options)
Applies the given set of cell options to either the current cell or the current row.QueryTable
QueryTable. withHeaderRow(CellOption... options)
Table
Table. withHeaderRow(CellOption... options)
Resets the first row to be a header row, which will have its header flag set and any given options applied to all cells in the row.Method parameters in com.identityworksllc.iiq.common.table with type arguments of type CellOption Modifier and Type Method Description static Cell
Cell. of(Object content, List<CellOption> options)
Constructs a new Cell that can be passed toTable.cell(Cell)
void
Row. setOptions(List<CellOption> options)
Table
Table. withCellOptions(List<CellOption> options)
Applies the given set of cell options to the current object.Constructors in com.identityworksllc.iiq.common.table with parameters of type CellOption Constructor Description Table(List<Object> rows, CellOption... options)
Creates a new Table and populates it with the given row data and options
-