Interface DesktopFacetFilterBehavior


public interface DesktopFacetFilterBehavior
Desktop functionality provided for facet filters. See FacetFilter.getDesktop().
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    filterBy(int filterListIndex, int... keysIndices)
    Invokes the specified filter (by index) according to the specified key indices.
    void
    filterBy(int filterListIndex, String... keys)
    Invokes the specified filter (by index) according to the specified keys.
    void
    filterBy(String filterListTitle, int... keysIndices)
    Invokes the specified filter (by name) according to the specified key indices.
    void
    filterBy(String filterListTitle, String... keys)
    Invokes the specified filter (by name) according to the specified keys.
  • Method Details

    • filterBy

      void filterBy(String filterListTitle, String... keys) throws GeneralLeanFtException
      Invokes the specified filter (by name) according to the specified keys.
      Parameters:
      filterListTitle - the name of the list containing the keys to filter.
      keys - the keys to select in the specified filter list.
      Throws:
      GeneralLeanFtException - if error occurs during execution
    • filterBy

      void filterBy(String filterListTitle, int... keysIndices) throws GeneralLeanFtException
      Invokes the specified filter (by name) according to the specified key indices.
      Parameters:
      filterListTitle - the name of the list containing the keys to filter.
      keysIndices - the key indices to select in the specified filter list.
      Throws:
      GeneralLeanFtException - if error occurs during execution
    • filterBy

      void filterBy(int filterListIndex, String... keys) throws GeneralLeanFtException
      Invokes the specified filter (by index) according to the specified keys.
      Parameters:
      filterListIndex - the index of the list containing the keys to filter.
      keys - the keys to select in the specified filter list.
      Throws:
      GeneralLeanFtException - if error occurs during execution
    • filterBy

      void filterBy(int filterListIndex, int... keysIndices) throws GeneralLeanFtException
      Invokes the specified filter (by index) according to the specified key indices.
      Parameters:
      filterListIndex - the index of the list containing the keys to filter.
      keysIndices - the key indices to select in the specified filter list.
      Throws:
      GeneralLeanFtException - if error occurs during execution