Interface SelectColumn.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SelectColumn.Builder,SelectColumn>,SdkBuilder<SelectColumn.Builder,SelectColumn>,SdkPojo
- Enclosing class:
- SelectColumn
public static interface SelectColumn.Builder extends SdkPojo, CopyableBuilder<SelectColumn.Builder,SelectColumn>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description SelectColumn.Builderaliased(Boolean aliased)True, if the column name was aliased by the query.SelectColumn.BuilderdatabaseName(String databaseName)Database that has this column.SelectColumn.Buildername(String name)Name of the column.SelectColumn.BuildertableName(String tableName)Table within the database that has this column.default SelectColumn.Buildertype(Consumer<Type.Builder> type)Sets the value of the Type property for this object.SelectColumn.Buildertype(Type type)Sets the value of the Type property for this object.-
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
-
name
SelectColumn.Builder name(String name)
Name of the column.
- Parameters:
name- Name of the column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
SelectColumn.Builder type(Type type)
Sets the value of the Type property for this object.- Parameters:
type- The new value for the Type property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
default SelectColumn.Builder type(Consumer<Type.Builder> type)
Sets the value of the Type property for this object. This is a convenience method that creates an instance of theType.Builderavoiding the need to create one manually viaType.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed totype(Type).- Parameters:
type- a consumer that will call methods onType.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
type(Type)
-
databaseName
SelectColumn.Builder databaseName(String databaseName)
Database that has this column.
- Parameters:
databaseName- Database that has this column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tableName
SelectColumn.Builder tableName(String tableName)
Table within the database that has this column.
- Parameters:
tableName- Table within the database that has this column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
aliased
SelectColumn.Builder aliased(Boolean aliased)
True, if the column name was aliased by the query. False otherwise.
- Parameters:
aliased- True, if the column name was aliased by the query. False otherwise.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-