Interface RowFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RowFilter.Builder,RowFilter>,SdkBuilder<RowFilter.Builder,RowFilter>,SdkPojo
- Enclosing class:
- RowFilter
public static interface RowFilter.Builder extends SdkPojo, CopyableBuilder<RowFilter.Builder,RowFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description RowFilter.Builderand(Collection<RowFilter> and)The 'and' clause of the row filter.RowFilter.Builderand(Consumer<RowFilter.Builder>... and)The 'and' clause of the row filter.RowFilter.Builderand(RowFilter... and)The 'and' clause of the row filter.default RowFilter.Builderexpression(Consumer<RowFilterExpression.Builder> expression)The expression of the row filter.RowFilter.Builderexpression(RowFilterExpression expression)The expression of the row filter.RowFilter.Builderor(Collection<RowFilter> or)The 'or' clause of the row filter.RowFilter.Builderor(Consumer<RowFilter.Builder>... or)The 'or' clause of the row filter.RowFilter.Builderor(RowFilter... or)The 'or' clause of the row filter.-
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, sdkFields
-
-
-
-
Method Detail
-
and
RowFilter.Builder and(Collection<RowFilter> and)
The 'and' clause of the row filter.
- Parameters:
and- The 'and' clause of the row filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
and
RowFilter.Builder and(RowFilter... and)
The 'and' clause of the row filter.
- Parameters:
and- The 'and' clause of the row filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
and
RowFilter.Builder and(Consumer<RowFilter.Builder>... and)
The 'and' clause of the row filter.
This is a convenience method that creates an instance of theRowFilter.Builderavoiding the need to create one manually viaRowFilter.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#and(List.) - Parameters:
and- a consumer that will call methods onRowFilter.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#and(java.util.Collection)
-
expression
RowFilter.Builder expression(RowFilterExpression expression)
The expression of the row filter.
- Parameters:
expression- The expression of the row filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
expression
default RowFilter.Builder expression(Consumer<RowFilterExpression.Builder> expression)
The expression of the row filter.
This is a convenience method that creates an instance of theRowFilterExpression.Builderavoiding the need to create one manually viaRowFilterExpression.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toexpression(RowFilterExpression).- Parameters:
expression- a consumer that will call methods onRowFilterExpression.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
expression(RowFilterExpression)
-
or
RowFilter.Builder or(Collection<RowFilter> or)
The 'or' clause of the row filter.
- Parameters:
or- The 'or' clause of the row filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
or
RowFilter.Builder or(RowFilter... or)
The 'or' clause of the row filter.
- Parameters:
or- The 'or' clause of the row filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
or
RowFilter.Builder or(Consumer<RowFilter.Builder>... or)
The 'or' clause of the row filter.
This is a convenience method that creates an instance of theRowFilter.Builderavoiding the need to create one manually viaRowFilter.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#or(List.) - Parameters:
or- a consumer that will call methods onRowFilter.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#or(java.util.Collection)
-
-