Class FinderColumnSearch

java.lang.Object
org.patternfly.component.SubComponent<HTMLElement, FinderColumnSearch>
org.patternfly.extension.finder.FinderColumnSearch
All Implemented Interfaces:
ElementAttributeMethods<HTMLElement, FinderColumnSearch>, ElementClassListMethods<HTMLElement, FinderColumnSearch>, ElementConsumerMethods<HTMLElement, FinderColumnSearch>, ElementContainerMethods<HTMLElement, FinderColumnSearch>, ElementEventMethods<HTMLElement, FinderColumnSearch>, ElementIdMethods<HTMLElement, FinderColumnSearch>, ElementQueryMethods<HTMLElement>, HTMLElementAttributeMethods<HTMLElement, FinderColumnSearch>, HTMLElementDataMethods<HTMLElement, FinderColumnSearch>, HTMLElementStyleMethods<HTMLElement, FinderColumnSearch>, HTMLElementVisibilityMethods<HTMLElement, FinderColumnSearch>, IsElement<HTMLElement>, TypedBuilder<HTMLElement, FinderColumnSearch>

public class FinderColumnSearch extends SubComponent<HTMLElement, FinderColumnSearch>
  • Field Details

  • Method Details

    • finderColumnSearch

      public static FinderColumnSearch finderColumnSearch()
    • addSearchInput

      public FinderColumnSearch addSearchInput(SearchInput input)
      Adds a SearchInput instance to the FinderColumnSearch with no specific filtering predicate.
      Parameters:
      input - the SearchInput instance to be added
      Returns:
      the updated FinderColumnSearch instance
    • add

      public FinderColumnSearch add(SearchInput input)
      Adds a SearchInput instance to the FinderColumnSearch with no specific filtering predicate.
      Parameters:
      input - the SearchInput instance to be added
      Returns:
      the updated FinderColumnSearch instance
    • addSearchInput

      public FinderColumnSearch addSearchInput(SearchInput input, BiPredicate<FinderItem, String> predicate)
      Adds a SearchInput instance to the FinderColumnSearch with a specific filtering predicate. The filtering predicate is used to determine how FinderItems should be filtered based on their text content and the specified search value. If the filter predicate returns true, the FinderItem will be marked as filtered.
      Parameters:
      input - the SearchInput instance to be added
      predicate - a BiPredicate that defines the filtering logic based on a FinderItem and the given search value
      Returns:
      the updated FinderColumnSearch instance
    • add

      public FinderColumnSearch add(SearchInput input, BiPredicate<FinderItem, String> predicate)
      Adds a SearchInput instance to the FinderColumnSearch with a specific filtering predicate. The filtering predicate is used to determine how FinderItems should be filtered based on their text content and the specified search value. If the filter predicate returns true, the FinderItem will be marked as filtered.
      Parameters:
      input - the SearchInput instance to be added
      predicate - a BiPredicate that defines the filtering logic based on a FinderItem and the given search value
      Returns:
      the updated FinderColumnSearch instance
    • that

      public FinderColumnSearch that()