Interface FilterExpression.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FilterExpression.Builder,FilterExpression>,SdkBuilder<FilterExpression.Builder,FilterExpression>,SdkPojo
- Enclosing class:
- FilterExpression
public static interface FilterExpression.Builder extends SdkPojo, CopyableBuilder<FilterExpression.Builder,FilterExpression>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FilterExpression.Buildernegated(Boolean negated)Whether the expression is to be negated.FilterExpression.Builderoperation(String operation)The type of operation to perform in the expression.FilterExpression.Builderoperation(FilterOperation operation)The type of operation to perform in the expression.FilterExpression.Buildervalues(Collection<FilterValue> values)A list of filter values.FilterExpression.Buildervalues(Consumer<FilterValue.Builder>... values)A list of filter values.FilterExpression.Buildervalues(FilterValue... values)A list of filter values.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
operation
FilterExpression.Builder operation(String operation)
The type of operation to perform in the expression.
- Parameters:
operation- The type of operation to perform in the expression.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FilterOperation,FilterOperation
-
operation
FilterExpression.Builder operation(FilterOperation operation)
The type of operation to perform in the expression.
- Parameters:
operation- The type of operation to perform in the expression.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FilterOperation,FilterOperation
-
negated
FilterExpression.Builder negated(Boolean negated)
Whether the expression is to be negated.
- Parameters:
negated- Whether the expression is to be negated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
FilterExpression.Builder values(Collection<FilterValue> values)
A list of filter values.
- Parameters:
values- A list of filter values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
FilterExpression.Builder values(FilterValue... values)
A list of filter values.
- Parameters:
values- A list of filter values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
FilterExpression.Builder values(Consumer<FilterValue.Builder>... values)
A list of filter values.
This is a convenience method that creates an instance of theFilterValue.Builderavoiding the need to create one manually viaFilterValue.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#values(List.) - Parameters:
values- a consumer that will call methods onFilterValue.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#values(java.util.Collection)
-
-