Interface InExpression.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<InExpression.Builder,InExpression>,SdkBuilder<InExpression.Builder,InExpression>,SdkPojo
- Enclosing class:
- InExpression
public static interface InExpression.Builder extends SdkPojo, CopyableBuilder<InExpression.Builder,InExpression>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InExpression.BuildercolumnName(String columnName)The name of the column.InExpression.Buildervalues(String... values)The values that might be in the expression.InExpression.Buildervalues(Collection<String> values)The values that might be in the expression.-
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
-
columnName
InExpression.Builder columnName(String columnName)
The name of the column.
- Parameters:
columnName- The name of the column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
InExpression.Builder values(Collection<String> values)
The values that might be in the expression.
- Parameters:
values- The values that might be in the expression.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
InExpression.Builder values(String... values)
The values that might be in the expression.
- Parameters:
values- The values that might be in the expression.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-