Interface EvaluationScore.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EvaluationScore.Builder,EvaluationScore>,SdkBuilder<EvaluationScore.Builder,EvaluationScore>,SdkPojo
- Enclosing class:
- EvaluationScore
public static interface EvaluationScore.Builder extends SdkPojo, CopyableBuilder<EvaluationScore.Builder,EvaluationScore>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EvaluationScore.BuilderautomaticFail(Boolean automaticFail)The flag that marks the item as automatic fail.EvaluationScore.BuildernotApplicable(Boolean notApplicable)The flag to mark the item as not applicable for scoring.EvaluationScore.Builderpercentage(Double percentage)The score percentage for an item in a contact evaluation.-
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
-
percentage
EvaluationScore.Builder percentage(Double percentage)
The score percentage for an item in a contact evaluation.
- Parameters:
percentage- The score percentage for an item in a contact evaluation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
notApplicable
EvaluationScore.Builder notApplicable(Boolean notApplicable)
The flag to mark the item as not applicable for scoring.
- Parameters:
notApplicable- The flag to mark the item as not applicable for scoring.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
automaticFail
EvaluationScore.Builder automaticFail(Boolean automaticFail)
The flag that marks the item as automatic fail. If the item or a child item gets an automatic fail answer, this flag will be true.
- Parameters:
automaticFail- The flag that marks the item as automatic fail. If the item or a child item gets an automatic fail answer, this flag will be true.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-