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 CellOptionCellOptions. addCssClasses(String... classes)Modifies the given Cell to add the classes listed to the existing liststatic CellOptionCellOptions. colspan(int span)Modifies the given Cell to have a column span of the given valuestatic CellOptionCellOptions. header()Modifies the given cell to set it as a header (th vs td)static CellOptionCellOptions. html()Modifies the given cell to set it as an HTML valuestatic CellOptionCellOptions. rowspan(int span)Modifies the given cell to set its rowspanstatic CellOptionCellOptions. setCssClasses(String... classes)Modifies the given Cell to replace the class list with the ones listedstatic CellOptionCellOptions. 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 TableTable. 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.TableTable. 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.TableTable. 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.TableTable. cell(Object value, CellOption... options)Adds a new cell to the current row with the given value contentstatic CellCell. of(Object content, CellOption... options)Constructs a new Cell that can be passed toTable.cell(Cell)TableTable. row(List<Object> values, CellOption... options)Creates a new (non-header) row and populates it with the given cell values.TableTable. rows(List<Object> rowData, CellOption... cellOptions)Accepts a set of row data and adds it to the output table.QueryTableQueryTable. setColumnCellOptions(int column, CellOption... options)TableTable. 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.QueryTableQueryTable. setRowCellOptions(int row, CellOption... options)TableTable. 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.TableTable. withCellOptions(CellOption... options)Applies the given set of cell options to either the current cell or the current row.QueryTableQueryTable. withHeaderRow(CellOption... options)TableTable. 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 CellCell. of(Object content, List<CellOption> options)Constructs a new Cell that can be passed toTable.cell(Cell)voidRow. setOptions(List<CellOption> options)TableTable. 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 
 -