Class ColumnToSearch

java.lang.Object
com.hp.lft.sdk.web.ColumnToSearch

public class ColumnToSearch extends Object
Class defining the table column in which to search.
Usage example:
ColumnToSearch columnToSearch = ColumnToSearch.byIndex(5);
ColumnToSearch columnToSearch = ColumnToSearch.byHeader("header2", 1);
  • Field Details

    • columnHeader

      protected String columnHeader
    • columnIndex

      protected Integer columnIndex
    • columnHeaderOccurrence

      protected Integer columnHeaderOccurrence
  • Constructor Details

    • ColumnToSearch

      protected ColumnToSearch()
  • Method Details

    • byIndex

      public static ColumnToSearch byIndex(int columnIndex)
      Returns the object that specifies the table column in which to search.
      Parameters:
      columnIndex - 0-based column index.
      Returns:
      the object that specifies the table column in which to search
    • byHeader

      public static ColumnToSearch byHeader(String columnHeader)
      Returns the object that specifies the table column in which to search
      Parameters:
      columnHeader - the column's name.
      Returns:
      the object that specifies the table column in which to search
    • byHeader

      public static ColumnToSearch byHeader(String columnHeader, int columnHeaderOccurrence)
      Returns the object that specifies the table column in which to search
      Parameters:
      columnHeader - the column's name.
      columnHeaderOccurrence - 0-based ordinal number of the column name's occurrence if the table has multiple columns with the same name.
      Returns:
      the object that specifies the table column in which to search.