Interface FilterParameter.Builder

All Superinterfaces:
Buildable, CopyableBuilder<FilterParameter.Builder,FilterParameter>, SdkBuilder<FilterParameter.Builder,FilterParameter>, SdkPojo
Enclosing class:
FilterParameter

public static interface FilterParameter.Builder extends SdkPojo, CopyableBuilder<FilterParameter.Builder,FilterParameter>
  • Method Details

    • 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

      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:
    • 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.