Interface DimensionCondition.Builder

    • Method Detail

      • comparison

        DimensionCondition.Builder comparison​(String comparison)

        The comparison operator to use for the filter.

        Parameters:
        comparison - The comparison operator to use for the filter.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        Comparison, Comparison
      • comparison

        DimensionCondition.Builder comparison​(Comparison comparison)

        The comparison operator to use for the filter.

        Parameters:
        comparison - The comparison operator to use for the filter.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        Comparison, Comparison
      • values

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

        The list of values to match against the specified dimension. For 'equals' comparison, only the first value is used. For 'in' comparison, any matching value will satisfy the condition.

        Parameters:
        values - The list of values to match against the specified dimension. For 'equals' comparison, only the first value is used. For 'in' comparison, any matching value will satisfy the condition.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • values

        DimensionCondition.Builder values​(String... values)

        The list of values to match against the specified dimension. For 'equals' comparison, only the first value is used. For 'in' comparison, any matching value will satisfy the condition.

        Parameters:
        values - The list of values to match against the specified dimension. For 'equals' comparison, only the first value is used. For 'in' comparison, any matching value will satisfy the condition.
        Returns:
        Returns a reference to this object so that method calls can be chained together.