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