com.hp.lft.sdk.sap.ui5

Interface DesktopFacetFilterBehavior



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

      Modifier and TypeMethod and Description
      voidfilterBy(int filterListIndex, int... keysIndices)
      Invokes the specified filter (by index) according to the specified key indices.
      voidfilterBy(int filterListIndex, java.lang.String... keys)
      Invokes the specified filter (by index) according to the specified keys.
      voidfilterBy(java.lang.String filterListTitle, int... keysIndices)
      Invokes the specified filter (by name) according to the specified key indices.
      voidfilterBy(java.lang.String filterListTitle, java.lang.String... keys)
      Invokes the specified filter (by name) according to the specified keys.
    • Method Detail

      • filterBy

        void filterBy(java.lang.String filterListTitle,
                      java.lang.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 an error occurs during execution.
      • filterBy

        void filterBy(java.lang.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 an error occurs during execution.
      • filterBy

        void filterBy(int filterListIndex,
                      java.lang.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 an 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 an error occurs during execution.