Interface EmailAddressSearchCriteria.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EmailAddressSearchCriteria.Builder,EmailAddressSearchCriteria>,SdkBuilder<EmailAddressSearchCriteria.Builder,EmailAddressSearchCriteria>,SdkPojo
- Enclosing class:
- EmailAddressSearchCriteria
public static interface EmailAddressSearchCriteria.Builder extends SdkPojo, CopyableBuilder<EmailAddressSearchCriteria.Builder,EmailAddressSearchCriteria>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description EmailAddressSearchCriteria.BuilderandConditions(Collection<EmailAddressSearchCriteria> andConditions)A list of conditions which would be applied together with an AND condition.EmailAddressSearchCriteria.BuilderandConditions(Consumer<EmailAddressSearchCriteria.Builder>... andConditions)A list of conditions which would be applied together with an AND condition.EmailAddressSearchCriteria.BuilderandConditions(EmailAddressSearchCriteria... andConditions)A list of conditions which would be applied together with an AND condition.EmailAddressSearchCriteria.BuilderorConditions(Collection<EmailAddressSearchCriteria> orConditions)A list of conditions which would be applied together with an OR condition.EmailAddressSearchCriteria.BuilderorConditions(Consumer<EmailAddressSearchCriteria.Builder>... orConditions)A list of conditions which would be applied together with an OR condition.EmailAddressSearchCriteria.BuilderorConditions(EmailAddressSearchCriteria... orConditions)A list of conditions which would be applied together with an OR condition.default EmailAddressSearchCriteria.BuilderstringCondition(Consumer<StringCondition.Builder> stringCondition)Sets the value of the StringCondition property for this object.EmailAddressSearchCriteria.BuilderstringCondition(StringCondition stringCondition)Sets the value of the StringCondition property for this object.-
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
-
orConditions
EmailAddressSearchCriteria.Builder orConditions(Collection<EmailAddressSearchCriteria> orConditions)
A list of conditions which would be applied together with an OR condition.
- Parameters:
orConditions- A list of conditions which would be applied together with an OR condition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
orConditions
EmailAddressSearchCriteria.Builder orConditions(EmailAddressSearchCriteria... orConditions)
A list of conditions which would be applied together with an OR condition.
- Parameters:
orConditions- A list of conditions which would be applied together with an OR condition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
orConditions
EmailAddressSearchCriteria.Builder orConditions(Consumer<EmailAddressSearchCriteria.Builder>... orConditions)
A list of conditions which would be applied together with an OR condition.
This is a convenience method that creates an instance of theEmailAddressSearchCriteria.Builderavoiding the need to create one manually viaEmailAddressSearchCriteria.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#orConditions(List.) - Parameters:
orConditions- a consumer that will call methods onEmailAddressSearchCriteria.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#orConditions(java.util.Collection)
-
andConditions
EmailAddressSearchCriteria.Builder andConditions(Collection<EmailAddressSearchCriteria> andConditions)
A list of conditions which would be applied together with an AND condition.
- Parameters:
andConditions- A list of conditions which would be applied together with an AND condition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
andConditions
EmailAddressSearchCriteria.Builder andConditions(EmailAddressSearchCriteria... andConditions)
A list of conditions which would be applied together with an AND condition.
- Parameters:
andConditions- A list of conditions which would be applied together with an AND condition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
andConditions
EmailAddressSearchCriteria.Builder andConditions(Consumer<EmailAddressSearchCriteria.Builder>... andConditions)
A list of conditions which would be applied together with an AND condition.
This is a convenience method that creates an instance of theEmailAddressSearchCriteria.Builderavoiding the need to create one manually viaEmailAddressSearchCriteria.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#andConditions(List.) - Parameters:
andConditions- a consumer that will call methods onEmailAddressSearchCriteria.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#andConditions(java.util.Collection)
-
stringCondition
EmailAddressSearchCriteria.Builder stringCondition(StringCondition stringCondition)
Sets the value of the StringCondition property for this object.- Parameters:
stringCondition- The new value for the StringCondition property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stringCondition
default EmailAddressSearchCriteria.Builder stringCondition(Consumer<StringCondition.Builder> stringCondition)
Sets the value of the StringCondition property for this object. This is a convenience method that creates an instance of theStringCondition.Builderavoiding the need to create one manually viaStringCondition.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tostringCondition(StringCondition).- Parameters:
stringCondition- a consumer that will call methods onStringCondition.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
stringCondition(StringCondition)
-
-