Interface MissingDataConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MissingDataConfiguration.Builder,MissingDataConfiguration>,SdkBuilder<MissingDataConfiguration.Builder,MissingDataConfiguration>,SdkPojo
- Enclosing class:
- MissingDataConfiguration
public static interface MissingDataConfiguration.Builder extends SdkPojo, CopyableBuilder<MissingDataConfiguration.Builder,MissingDataConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MissingDataConfiguration.BuildertreatmentOption(String treatmentOption)The treatment option that determines how missing data should be rendered.MissingDataConfiguration.BuildertreatmentOption(MissingDataTreatmentOption treatmentOption)The treatment option that determines how missing data should be rendered.-
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
-
treatmentOption
MissingDataConfiguration.Builder treatmentOption(String treatmentOption)
The treatment option that determines how missing data should be rendered. Choose from the following options:
-
INTERPOLATE: Interpolate missing values between the prior and the next known value. -
SHOW_AS_ZERO: Show missing values as the value0. -
SHOW_AS_BLANK: Display a blank space when rendering missing data.
- Parameters:
treatmentOption- The treatment option that determines how missing data should be rendered. Choose from the following options:-
INTERPOLATE: Interpolate missing values between the prior and the next known value. -
SHOW_AS_ZERO: Show missing values as the value0. -
SHOW_AS_BLANK: Display a blank space when rendering missing data.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MissingDataTreatmentOption,MissingDataTreatmentOption
-
-
treatmentOption
MissingDataConfiguration.Builder treatmentOption(MissingDataTreatmentOption treatmentOption)
The treatment option that determines how missing data should be rendered. Choose from the following options:
-
INTERPOLATE: Interpolate missing values between the prior and the next known value. -
SHOW_AS_ZERO: Show missing values as the value0. -
SHOW_AS_BLANK: Display a blank space when rendering missing data.
- Parameters:
treatmentOption- The treatment option that determines how missing data should be rendered. Choose from the following options:-
INTERPOLATE: Interpolate missing values between the prior and the next known value. -
SHOW_AS_ZERO: Show missing values as the value0. -
SHOW_AS_BLANK: Display a blank space when rendering missing data.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MissingDataTreatmentOption,MissingDataTreatmentOption
-
-
-