Interface CustomFilterListConfiguration.Builder

    • Method Detail

      • categoryValues

        CustomFilterListConfiguration.Builder categoryValues​(Collection<String> categoryValues)

        The list of category values for the filter.

        Parameters:
        categoryValues - The list of category values for the filter.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • categoryValues

        CustomFilterListConfiguration.Builder categoryValues​(String... categoryValues)

        The list of category values for the filter.

        Parameters:
        categoryValues - The list of category values for the filter.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • nullOption

        CustomFilterListConfiguration.Builder nullOption​(String nullOption)

        This option determines how null values should be treated when filtering data.

        • ALL_VALUES: Include null values in filtered results.

        • NULLS_ONLY: Only include null values in filtered results.

        • NON_NULLS_ONLY: Exclude null values from filtered results.

        Parameters:
        nullOption - This option determines how null values should be treated when filtering data.

        • ALL_VALUES: Include null values in filtered results.

        • NULLS_ONLY: Only include null values in filtered results.

        • NON_NULLS_ONLY: Exclude null values from filtered results.

        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        FilterNullOption, FilterNullOption
      • nullOption

        CustomFilterListConfiguration.Builder nullOption​(FilterNullOption nullOption)

        This option determines how null values should be treated when filtering data.

        • ALL_VALUES: Include null values in filtered results.

        • NULLS_ONLY: Only include null values in filtered results.

        • NON_NULLS_ONLY: Exclude null values from filtered results.

        Parameters:
        nullOption - This option determines how null values should be treated when filtering data.

        • ALL_VALUES: Include null values in filtered results.

        • NULLS_ONLY: Only include null values in filtered results.

        • NON_NULLS_ONLY: Exclude null values from filtered results.

        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        FilterNullOption, FilterNullOption