Interface CommandParameterValueComparisonOperand.Builder
- All Superinterfaces:
Buildable,CopyableBuilder<CommandParameterValueComparisonOperand.Builder,,CommandParameterValueComparisonOperand> SdkBuilder<CommandParameterValueComparisonOperand.Builder,,CommandParameterValueComparisonOperand> SdkPojo
- Enclosing class:
CommandParameterValueComparisonOperand
@Mutable
@NotThreadSafe
public static interface CommandParameterValueComparisonOperand.Builder
extends SdkPojo, CopyableBuilder<CommandParameterValueComparisonOperand.Builder,CommandParameterValueComparisonOperand>
-
Method Summary
Modifier and TypeMethodDescriptionAn operand of number value type, defined as a string.numberRange(Consumer<CommandParameterValueNumberRange.Builder> numberRange) An operand of numerical range value type.numberRange(CommandParameterValueNumberRange numberRange) An operand of numerical range value type.A List of operands of numerical value type, defined as strings.numbers(Collection<String> numbers) A List of operands of numerical value type, defined as strings.An operand of string value type.A List of operands of string value type.strings(Collection<String> strings) A List of operands of string value type.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
number
An operand of number value type, defined as a string.
- Parameters:
number- An operand of number value type, defined as a string.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
numbers
A List of operands of numerical value type, defined as strings.
- Parameters:
numbers- A List of operands of numerical value type, defined as strings.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
numbers
A List of operands of numerical value type, defined as strings.
- Parameters:
numbers- A List of operands of numerical value type, defined as strings.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
string
An operand of string value type.
- Parameters:
string- An operand of string value type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
strings
A List of operands of string value type.
- Parameters:
strings- A List of operands of string value type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
strings
A List of operands of string value type.
- Parameters:
strings- A List of operands of string value type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
numberRange
CommandParameterValueComparisonOperand.Builder numberRange(CommandParameterValueNumberRange numberRange) An operand of numerical range value type.
- Parameters:
numberRange- An operand of numerical range value type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
numberRange
default CommandParameterValueComparisonOperand.Builder numberRange(Consumer<CommandParameterValueNumberRange.Builder> numberRange) An operand of numerical range value type.
This is a convenience method that creates an instance of theCommandParameterValueNumberRange.Builderavoiding the need to create one manually viaCommandParameterValueNumberRange.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tonumberRange(CommandParameterValueNumberRange).- Parameters:
numberRange- a consumer that will call methods onCommandParameterValueNumberRange.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-