Class DetailedCell<T>

java.lang.Object
io.jenkins.plugins.datatables.DetailedCell<T>
Type Parameters:
T - the type of the sort column

public class DetailedCell<T> extends Object
A table cell that provides a display and sort property so that a JQuery data table can use different properties to sort and display a column. In order to use such a cell the TableColumn has to be configured using the
  • Constructor Details

    • DetailedCell

      public DetailedCell(String display, T sort)
      Creates a new DetailedCell.
      Parameters:
      display - the value that should be used to display the cell
      sort - the value that should be used to sort the cell
      See Also:
  • Method Details

    • getDisplay

      public String getDisplay()
    • getSort

      public T getSort()