Interface ParameterMapEntry.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ParameterMapEntry.Builder,ParameterMapEntry>,SdkBuilder<ParameterMapEntry.Builder,ParameterMapEntry>,SdkPojo
- Enclosing class:
- ParameterMapEntry
public static interface ParameterMapEntry.Builder extends SdkPojo, CopyableBuilder<ParameterMapEntry.Builder,ParameterMapEntry>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ParameterMapEntry.Builderkey(String key)The QuestionID from the HIT that is used to identify which question requires Mechanical Turk to score as part of the ScoreMyKnownAnswers/2011-09-01 Review Policy.ParameterMapEntry.Buildervalues(String... values)The list of answers to the question specified in the MapEntry Key element.ParameterMapEntry.Buildervalues(Collection<String> values)The list of answers to the question specified in the MapEntry Key element.-
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
-
key
ParameterMapEntry.Builder key(String key)
The QuestionID from the HIT that is used to identify which question requires Mechanical Turk to score as part of the ScoreMyKnownAnswers/2011-09-01 Review Policy.
- Parameters:
key- The QuestionID from the HIT that is used to identify which question requires Mechanical Turk to score as part of the ScoreMyKnownAnswers/2011-09-01 Review Policy.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
ParameterMapEntry.Builder values(Collection<String> values)
The list of answers to the question specified in the MapEntry Key element. The Worker must match all values in order for the answer to be scored correctly.
- Parameters:
values- The list of answers to the question specified in the MapEntry Key element. The Worker must match all values in order for the answer to be scored correctly.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
ParameterMapEntry.Builder values(String... values)
The list of answers to the question specified in the MapEntry Key element. The Worker must match all values in order for the answer to be scored correctly.
- Parameters:
values- The list of answers to the question specified in the MapEntry Key element. The Worker must match all values in order for the answer to be scored correctly.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-