Interface MeasureField.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MeasureField.Builder,MeasureField>,SdkBuilder<MeasureField.Builder,MeasureField>,SdkPojo
- Enclosing class:
- MeasureField
public static interface MeasureField.Builder extends SdkPojo, CopyableBuilder<MeasureField.Builder,MeasureField>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default MeasureField.BuildercalculatedMeasureField(Consumer<CalculatedMeasureField.Builder> calculatedMeasureField)The calculated measure field only used in pivot tables.MeasureField.BuildercalculatedMeasureField(CalculatedMeasureField calculatedMeasureField)The calculated measure field only used in pivot tables.default MeasureField.BuildercategoricalMeasureField(Consumer<CategoricalMeasureField.Builder> categoricalMeasureField)The measure type field with categorical type columns.MeasureField.BuildercategoricalMeasureField(CategoricalMeasureField categoricalMeasureField)The measure type field with categorical type columns.default MeasureField.BuilderdateMeasureField(Consumer<DateMeasureField.Builder> dateMeasureField)The measure type field with date type columns.MeasureField.BuilderdateMeasureField(DateMeasureField dateMeasureField)The measure type field with date type columns.default MeasureField.BuildernumericalMeasureField(Consumer<NumericalMeasureField.Builder> numericalMeasureField)The measure type field with numerical type columns.MeasureField.BuildernumericalMeasureField(NumericalMeasureField numericalMeasureField)The measure type field with numerical type columns.-
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
-
numericalMeasureField
MeasureField.Builder numericalMeasureField(NumericalMeasureField numericalMeasureField)
The measure type field with numerical type columns.
- Parameters:
numericalMeasureField- The measure type field with numerical type columns.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
numericalMeasureField
default MeasureField.Builder numericalMeasureField(Consumer<NumericalMeasureField.Builder> numericalMeasureField)
The measure type field with numerical type columns.
This is a convenience method that creates an instance of theNumericalMeasureField.Builderavoiding the need to create one manually viaNumericalMeasureField.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tonumericalMeasureField(NumericalMeasureField).- Parameters:
numericalMeasureField- a consumer that will call methods onNumericalMeasureField.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
numericalMeasureField(NumericalMeasureField)
-
categoricalMeasureField
MeasureField.Builder categoricalMeasureField(CategoricalMeasureField categoricalMeasureField)
The measure type field with categorical type columns.
- Parameters:
categoricalMeasureField- The measure type field with categorical type columns.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
categoricalMeasureField
default MeasureField.Builder categoricalMeasureField(Consumer<CategoricalMeasureField.Builder> categoricalMeasureField)
The measure type field with categorical type columns.
This is a convenience method that creates an instance of theCategoricalMeasureField.Builderavoiding the need to create one manually viaCategoricalMeasureField.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocategoricalMeasureField(CategoricalMeasureField).- Parameters:
categoricalMeasureField- a consumer that will call methods onCategoricalMeasureField.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
categoricalMeasureField(CategoricalMeasureField)
-
dateMeasureField
MeasureField.Builder dateMeasureField(DateMeasureField dateMeasureField)
The measure type field with date type columns.
- Parameters:
dateMeasureField- The measure type field with date type columns.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dateMeasureField
default MeasureField.Builder dateMeasureField(Consumer<DateMeasureField.Builder> dateMeasureField)
The measure type field with date type columns.
This is a convenience method that creates an instance of theDateMeasureField.Builderavoiding the need to create one manually viaDateMeasureField.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todateMeasureField(DateMeasureField).- Parameters:
dateMeasureField- a consumer that will call methods onDateMeasureField.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
dateMeasureField(DateMeasureField)
-
calculatedMeasureField
MeasureField.Builder calculatedMeasureField(CalculatedMeasureField calculatedMeasureField)
The calculated measure field only used in pivot tables.
- Parameters:
calculatedMeasureField- The calculated measure field only used in pivot tables.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
calculatedMeasureField
default MeasureField.Builder calculatedMeasureField(Consumer<CalculatedMeasureField.Builder> calculatedMeasureField)
The calculated measure field only used in pivot tables.
This is a convenience method that creates an instance of theCalculatedMeasureField.Builderavoiding the need to create one manually viaCalculatedMeasureField.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocalculatedMeasureField(CalculatedMeasureField).- Parameters:
calculatedMeasureField- a consumer that will call methods onCalculatedMeasureField.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
calculatedMeasureField(CalculatedMeasureField)
-
-