Expression.Builder |
Expression.Builder.and(Collection<Expression> and) |
Return results that match all Expressions that you specified in the array.
|
Expression.Builder |
Expression.Builder.and(Consumer<Expression.Builder>... and) |
Return results that match all Expressions that you specified in the array.
|
Expression.Builder |
Expression.Builder.and(Expression... and) |
Return results that match all Expressions that you specified in the array.
|
static Expression.Builder |
Expression.builder() |
|
default Expression.Builder |
Expression.Builder.dimensions(Consumer<DimensionValues.Builder> dimensions) |
The specific dimension, values, and match type to filter objects with.
|
Expression.Builder |
Expression.Builder.dimensions(DimensionValues dimensions) |
The specific dimension, values, and match type to filter objects with.
|
default Expression.Builder |
Expression.Builder.not(Consumer<Expression.Builder> not) |
Return results that don’t match the Expression that you specified.
|
Expression.Builder |
Expression.Builder.not(Expression not) |
Return results that don’t match the Expression that you specified.
|
Expression.Builder |
Expression.Builder.or(Collection<Expression> or) |
Return results that match any of the Expressions that you specified.
|
Expression.Builder |
Expression.Builder.or(Consumer<Expression.Builder>... or) |
Return results that match any of the Expressions that you specified.
|
Expression.Builder |
Expression.Builder.or(Expression... or) |
Return results that match any of the Expressions that you specified.
|
Expression.Builder |
Expression.toBuilder() |
|