Interface StatisticModelResult.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StatisticModelResult.Builder,StatisticModelResult>,SdkBuilder<StatisticModelResult.Builder,StatisticModelResult>,SdkPojo
- Enclosing class:
- StatisticModelResult
public static interface StatisticModelResult.Builder extends SdkPojo, CopyableBuilder<StatisticModelResult.Builder,StatisticModelResult>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StatisticModelResult.BuilderactualValue(Double actualValue)The actual value.StatisticModelResult.Builderdate(Instant date)The date.StatisticModelResult.BuilderinclusionAnnotation(String inclusionAnnotation)The inclusion annotation.StatisticModelResult.BuilderinclusionAnnotation(InclusionAnnotationValue inclusionAnnotation)The inclusion annotation.StatisticModelResult.BuilderlowerBound(Double lowerBound)The lower bound.StatisticModelResult.BuilderpredictedValue(Double predictedValue)The predicted value.StatisticModelResult.BuilderupperBound(Double upperBound)The upper bound.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
lowerBound
StatisticModelResult.Builder lowerBound(Double lowerBound)
The lower bound.
- Parameters:
lowerBound- The lower bound.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
upperBound
StatisticModelResult.Builder upperBound(Double upperBound)
The upper bound.
- Parameters:
upperBound- The upper bound.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
predictedValue
StatisticModelResult.Builder predictedValue(Double predictedValue)
The predicted value.
- Parameters:
predictedValue- The predicted value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
actualValue
StatisticModelResult.Builder actualValue(Double actualValue)
The actual value.
- Parameters:
actualValue- The actual value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
date
StatisticModelResult.Builder date(Instant date)
The date.
- Parameters:
date- The date.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inclusionAnnotation
StatisticModelResult.Builder inclusionAnnotation(String inclusionAnnotation)
The inclusion annotation.
- Parameters:
inclusionAnnotation- The inclusion annotation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
InclusionAnnotationValue,InclusionAnnotationValue
-
inclusionAnnotation
StatisticModelResult.Builder inclusionAnnotation(InclusionAnnotationValue inclusionAnnotation)
The inclusion annotation.
- Parameters:
inclusionAnnotation- The inclusion annotation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
InclusionAnnotationValue,InclusionAnnotationValue
-
-