Interface EvaluationFormSection.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EvaluationFormSection.Builder,EvaluationFormSection>,SdkBuilder<EvaluationFormSection.Builder,EvaluationFormSection>,SdkPojo
- Enclosing class:
- EvaluationFormSection
public static interface EvaluationFormSection.Builder extends SdkPojo, CopyableBuilder<EvaluationFormSection.Builder,EvaluationFormSection>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EvaluationFormSection.Builderinstructions(String instructions)The instructions of the section.EvaluationFormSection.Builderitems(Collection<EvaluationFormItem> items)The items of the section.EvaluationFormSection.Builderitems(Consumer<EvaluationFormItem.Builder>... items)The items of the section.EvaluationFormSection.Builderitems(EvaluationFormItem... items)The items of the section.EvaluationFormSection.BuilderrefId(String refId)The identifier of the section.EvaluationFormSection.Buildertitle(String title)The title of the section.EvaluationFormSection.Builderweight(Double weight)The scoring weight of the section.-
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
-
title
EvaluationFormSection.Builder title(String title)
The title of the section.
- Parameters:
title- The title of the section.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
refId
EvaluationFormSection.Builder refId(String refId)
The identifier of the section. An identifier must be unique within the evaluation form.
- Parameters:
refId- The identifier of the section. An identifier must be unique within the evaluation form.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
instructions
EvaluationFormSection.Builder instructions(String instructions)
The instructions of the section.
- Parameters:
instructions- The instructions of the section.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
EvaluationFormSection.Builder items(Collection<EvaluationFormItem> items)
The items of the section.
- Parameters:
items- The items of the section.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
EvaluationFormSection.Builder items(EvaluationFormItem... items)
The items of the section.
- Parameters:
items- The items of the section.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
EvaluationFormSection.Builder items(Consumer<EvaluationFormItem.Builder>... items)
The items of the section.
This is a convenience method that creates an instance of theEvaluationFormItem.Builderavoiding the need to create one manually viaEvaluationFormItem.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#items(List.) - Parameters:
items- a consumer that will call methods onEvaluationFormItem.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#items(java.util.Collection)
-
weight
EvaluationFormSection.Builder weight(Double weight)
The scoring weight of the section.
- Parameters:
weight- The scoring weight of the section.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-