Interface FilterParameter.Builder

    • Method Detail

      • field

        FilterParameter.Builder field​(String field)

        A data field that you want to filter, to further scope your application's Internet Monitor data in a repository that you created by running a query. A field might be city, for example. The field must be one of the fields that was returned by the specific query that you used to create the repository.

        Parameters:
        field - A data field that you want to filter, to further scope your application's Internet Monitor data in a repository that you created by running a query. A field might be city, for example. The field must be one of the fields that was returned by the specific query that you used to create the repository.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • operator

        FilterParameter.Builder operator​(String operator)

        The operator to use with the filter field and a value, such as not_equals.

        Parameters:
        operator - The operator to use with the filter field and a value, such as not_equals.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        Operator, Operator
      • operator

        FilterParameter.Builder operator​(Operator operator)

        The operator to use with the filter field and a value, such as not_equals.

        Parameters:
        operator - The operator to use with the filter field and a value, such as not_equals.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        Operator, Operator
      • values

        FilterParameter.Builder values​(Collection<String> values)

        One or more values to be used, together with the specified operator, to filter data for a query. For example, you could specify an array of values such as ["Seattle", "Redmond"]. Values in the array are separated by commas.

        Parameters:
        values - One or more values to be used, together with the specified operator, to filter data for a query. For example, you could specify an array of values such as ["Seattle", "Redmond"]. Values in the array are separated by commas.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • values

        FilterParameter.Builder values​(String... values)

        One or more values to be used, together with the specified operator, to filter data for a query. For example, you could specify an array of values such as ["Seattle", "Redmond"]. Values in the array are separated by commas.

        Parameters:
        values - One or more values to be used, together with the specified operator, to filter data for a query. For example, you could specify an array of values such as ["Seattle", "Redmond"]. Values in the array are separated by commas.
        Returns:
        Returns a reference to this object so that method calls can be chained together.