Interface Expression.Builder

    • Method Detail

      • and

        Expression.Builder and​(Collection<Expression> and)

        Return results that match all Expressions that you specified in the array.

        Parameters:
        and - Return results that match all Expressions that you specified in the array.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • and

        Expression.Builder and​(Expression... and)

        Return results that match all Expressions that you specified in the array.

        Parameters:
        and - Return results that match all Expressions that you specified in the array.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • dimensions

        Expression.Builder dimensions​(DimensionValues dimensions)

        The specific dimension, values, and match type to filter objects with.

        Parameters:
        dimensions - The specific dimension, values, and match type to filter objects with.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • not

        Expression.Builder not​(Expression not)

        Return results that don’t match the Expression that you specified.

        Parameters:
        not - Return results that don’t match the Expression that you specified.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • or

        Expression.Builder or​(Collection<Expression> or)

        Return results that match any of the Expressions that you specified. in the array.

        Parameters:
        or - Return results that match any of the Expressions that you specified. in the array.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • or

        Expression.Builder or​(Expression... or)

        Return results that match any of the Expressions that you specified. in the array.

        Parameters:
        or - Return results that match any of the Expressions that you specified. in the array.
        Returns:
        Returns a reference to this object so that method calls can be chained together.