Interface DateMeasureField.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DateMeasureField.Builder,DateMeasureField>,SdkBuilder<DateMeasureField.Builder,DateMeasureField>,SdkPojo
- Enclosing class:
- DateMeasureField
public static interface DateMeasureField.Builder extends SdkPojo, CopyableBuilder<DateMeasureField.Builder,DateMeasureField>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description DateMeasureField.BuilderaggregationFunction(String aggregationFunction)The aggregation function of the measure field.DateMeasureField.BuilderaggregationFunction(DateAggregationFunction aggregationFunction)The aggregation function of the measure field.default DateMeasureField.Buildercolumn(Consumer<ColumnIdentifier.Builder> column)The column that is used in theDateMeasureField.DateMeasureField.Buildercolumn(ColumnIdentifier column)The column that is used in theDateMeasureField.DateMeasureField.BuilderfieldId(String fieldId)The custom field ID.default DateMeasureField.BuilderformatConfiguration(Consumer<DateTimeFormatConfiguration.Builder> formatConfiguration)The format configuration of the field.DateMeasureField.BuilderformatConfiguration(DateTimeFormatConfiguration formatConfiguration)The format configuration of the field.-
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
-
fieldId
DateMeasureField.Builder fieldId(String fieldId)
The custom field ID.
- Parameters:
fieldId- The custom field ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
column
DateMeasureField.Builder column(ColumnIdentifier column)
The column that is used in the
DateMeasureField.- Parameters:
column- The column that is used in theDateMeasureField.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
column
default DateMeasureField.Builder column(Consumer<ColumnIdentifier.Builder> column)
The column that is used in the
This is a convenience method that creates an instance of theDateMeasureField.ColumnIdentifier.Builderavoiding the need to create one manually viaColumnIdentifier.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocolumn(ColumnIdentifier).- Parameters:
column- a consumer that will call methods onColumnIdentifier.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
column(ColumnIdentifier)
-
aggregationFunction
DateMeasureField.Builder aggregationFunction(String aggregationFunction)
The aggregation function of the measure field.
- Parameters:
aggregationFunction- The aggregation function of the measure field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DateAggregationFunction,DateAggregationFunction
-
aggregationFunction
DateMeasureField.Builder aggregationFunction(DateAggregationFunction aggregationFunction)
The aggregation function of the measure field.
- Parameters:
aggregationFunction- The aggregation function of the measure field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DateAggregationFunction,DateAggregationFunction
-
formatConfiguration
DateMeasureField.Builder formatConfiguration(DateTimeFormatConfiguration formatConfiguration)
The format configuration of the field.
- Parameters:
formatConfiguration- The format configuration of the field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
formatConfiguration
default DateMeasureField.Builder formatConfiguration(Consumer<DateTimeFormatConfiguration.Builder> formatConfiguration)
The format configuration of the field.
This is a convenience method that creates an instance of theDateTimeFormatConfiguration.Builderavoiding the need to create one manually viaDateTimeFormatConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toformatConfiguration(DateTimeFormatConfiguration).- Parameters:
formatConfiguration- a consumer that will call methods onDateTimeFormatConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
formatConfiguration(DateTimeFormatConfiguration)
-
-