Interface EvaluationFormNumericQuestionOption.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EvaluationFormNumericQuestionOption.Builder,EvaluationFormNumericQuestionOption>,SdkBuilder<EvaluationFormNumericQuestionOption.Builder,EvaluationFormNumericQuestionOption>,SdkPojo
- Enclosing class:
- EvaluationFormNumericQuestionOption
public static interface EvaluationFormNumericQuestionOption.Builder extends SdkPojo, CopyableBuilder<EvaluationFormNumericQuestionOption.Builder,EvaluationFormNumericQuestionOption>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EvaluationFormNumericQuestionOption.BuilderautomaticFail(Boolean automaticFail)The flag to mark the option as automatic fail.EvaluationFormNumericQuestionOption.BuildermaxValue(Integer maxValue)The maximum answer value of the range option.EvaluationFormNumericQuestionOption.BuilderminValue(Integer minValue)The minimum answer value of the range option.EvaluationFormNumericQuestionOption.Builderscore(Integer score)The score assigned to answer values within the range option.-
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
-
minValue
EvaluationFormNumericQuestionOption.Builder minValue(Integer minValue)
The minimum answer value of the range option.
- Parameters:
minValue- The minimum answer value of the range option.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxValue
EvaluationFormNumericQuestionOption.Builder maxValue(Integer maxValue)
The maximum answer value of the range option.
- Parameters:
maxValue- The maximum answer value of the range option.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
score
EvaluationFormNumericQuestionOption.Builder score(Integer score)
The score assigned to answer values within the range option.
- Parameters:
score- The score assigned to answer values within the range option.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
automaticFail
EvaluationFormNumericQuestionOption.Builder automaticFail(Boolean automaticFail)
The flag to mark the option as automatic fail. If an automatic fail answer is provided, the overall evaluation gets a score of 0.
- Parameters:
automaticFail- The flag to mark the option as automatic fail. If an automatic fail answer is provided, the overall evaluation gets a score of 0.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-