Interface KPIFieldWells.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<KPIFieldWells.Builder,KPIFieldWells>
,SdkBuilder<KPIFieldWells.Builder,KPIFieldWells>
,SdkPojo
- Enclosing class:
- KPIFieldWells
public static interface KPIFieldWells.Builder extends SdkPojo, CopyableBuilder<KPIFieldWells.Builder,KPIFieldWells>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description KPIFieldWells.Builder
targetValues(Collection<MeasureField> targetValues)
The target value field wells of a KPI visual.KPIFieldWells.Builder
targetValues(Consumer<MeasureField.Builder>... targetValues)
The target value field wells of a KPI visual.KPIFieldWells.Builder
targetValues(MeasureField... targetValues)
The target value field wells of a KPI visual.KPIFieldWells.Builder
trendGroups(Collection<DimensionField> trendGroups)
The trend group field wells of a KPI visual.KPIFieldWells.Builder
trendGroups(Consumer<DimensionField.Builder>... trendGroups)
The trend group field wells of a KPI visual.KPIFieldWells.Builder
trendGroups(DimensionField... trendGroups)
The trend group field wells of a KPI visual.KPIFieldWells.Builder
values(Collection<MeasureField> values)
The value field wells of a KPI visual.KPIFieldWells.Builder
values(Consumer<MeasureField.Builder>... values)
The value field wells of a KPI visual.KPIFieldWells.Builder
values(MeasureField... values)
The value field wells of a KPI visual.-
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
-
values
KPIFieldWells.Builder values(Collection<MeasureField> values)
The value field wells of a KPI visual.
- Parameters:
values
- The value field wells of a KPI visual.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
KPIFieldWells.Builder values(MeasureField... values)
The value field wells of a KPI visual.
- Parameters:
values
- The value field wells of a KPI visual.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
KPIFieldWells.Builder values(Consumer<MeasureField.Builder>... values)
The value field wells of a KPI visual.
This is a convenience method that creates an instance of theMeasureField.Builder
avoiding the need to create one manually viaMeasureField.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#values(List
.) - Parameters:
values
- a consumer that will call methods onMeasureField.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#values(java.util.Collection
)
-
targetValues
KPIFieldWells.Builder targetValues(Collection<MeasureField> targetValues)
The target value field wells of a KPI visual.
- Parameters:
targetValues
- The target value field wells of a KPI visual.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
targetValues
KPIFieldWells.Builder targetValues(MeasureField... targetValues)
The target value field wells of a KPI visual.
- Parameters:
targetValues
- The target value field wells of a KPI visual.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
targetValues
KPIFieldWells.Builder targetValues(Consumer<MeasureField.Builder>... targetValues)
The target value field wells of a KPI visual.
This is a convenience method that creates an instance of theMeasureField.Builder
avoiding the need to create one manually viaMeasureField.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#targetValues(List
.) - Parameters:
targetValues
- a consumer that will call methods onMeasureField.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#targetValues(java.util.Collection
)
-
trendGroups
KPIFieldWells.Builder trendGroups(Collection<DimensionField> trendGroups)
The trend group field wells of a KPI visual.
- Parameters:
trendGroups
- The trend group field wells of a KPI visual.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
trendGroups
KPIFieldWells.Builder trendGroups(DimensionField... trendGroups)
The trend group field wells of a KPI visual.
- Parameters:
trendGroups
- The trend group field wells of a KPI visual.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
trendGroups
KPIFieldWells.Builder trendGroups(Consumer<DimensionField.Builder>... trendGroups)
The trend group field wells of a KPI visual.
This is a convenience method that creates an instance of theDimensionField.Builder
avoiding the need to create one manually viaDimensionField.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#trendGroups(List
.) - Parameters:
trendGroups
- a consumer that will call methods onDimensionField.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#trendGroups(java.util.Collection
)
-
-