Interface HoursOfOperationSearchCriteria.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<HoursOfOperationSearchCriteria.Builder,HoursOfOperationSearchCriteria>,SdkBuilder<HoursOfOperationSearchCriteria.Builder,HoursOfOperationSearchCriteria>,SdkPojo
- Enclosing class:
- HoursOfOperationSearchCriteria
public static interface HoursOfOperationSearchCriteria.Builder extends SdkPojo, CopyableBuilder<HoursOfOperationSearchCriteria.Builder,HoursOfOperationSearchCriteria>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description HoursOfOperationSearchCriteria.BuilderandConditions(Collection<HoursOfOperationSearchCriteria> andConditions)A list of conditions which would be applied together with an AND condition.HoursOfOperationSearchCriteria.BuilderandConditions(Consumer<HoursOfOperationSearchCriteria.Builder>... andConditions)A list of conditions which would be applied together with an AND condition.HoursOfOperationSearchCriteria.BuilderandConditions(HoursOfOperationSearchCriteria... andConditions)A list of conditions which would be applied together with an AND condition.HoursOfOperationSearchCriteria.BuilderorConditions(Collection<HoursOfOperationSearchCriteria> orConditions)A list of conditions which would be applied together with an OR condition.HoursOfOperationSearchCriteria.BuilderorConditions(Consumer<HoursOfOperationSearchCriteria.Builder>... orConditions)A list of conditions which would be applied together with an OR condition.HoursOfOperationSearchCriteria.BuilderorConditions(HoursOfOperationSearchCriteria... orConditions)A list of conditions which would be applied together with an OR condition.default HoursOfOperationSearchCriteria.BuilderstringCondition(Consumer<StringCondition.Builder> stringCondition)A leaf node condition which can be used to specify a string condition.HoursOfOperationSearchCriteria.BuilderstringCondition(StringCondition stringCondition)A leaf node condition which can be used to specify a string condition.-
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
-
orConditions
HoursOfOperationSearchCriteria.Builder orConditions(Collection<HoursOfOperationSearchCriteria> 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
HoursOfOperationSearchCriteria.Builder orConditions(HoursOfOperationSearchCriteria... 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
HoursOfOperationSearchCriteria.Builder orConditions(Consumer<HoursOfOperationSearchCriteria.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 theHoursOfOperationSearchCriteria.Builderavoiding the need to create one manually viaHoursOfOperationSearchCriteria.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 onHoursOfOperationSearchCriteria.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#orConditions(java.util.Collection)
-
andConditions
HoursOfOperationSearchCriteria.Builder andConditions(Collection<HoursOfOperationSearchCriteria> 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
HoursOfOperationSearchCriteria.Builder andConditions(HoursOfOperationSearchCriteria... 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
HoursOfOperationSearchCriteria.Builder andConditions(Consumer<HoursOfOperationSearchCriteria.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 theHoursOfOperationSearchCriteria.Builderavoiding the need to create one manually viaHoursOfOperationSearchCriteria.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 onHoursOfOperationSearchCriteria.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#andConditions(java.util.Collection)
-
stringCondition
HoursOfOperationSearchCriteria.Builder stringCondition(StringCondition stringCondition)
A leaf node condition which can be used to specify a string condition.
The currently supported values for
FieldNamearename,description,timezone, andresourceID.- Parameters:
stringCondition- A leaf node condition which can be used to specify a string condition.The currently supported values for
FieldNamearename,description,timezone, andresourceID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stringCondition
default HoursOfOperationSearchCriteria.Builder stringCondition(Consumer<StringCondition.Builder> stringCondition)
A leaf node condition which can be used to specify a string condition.
This is a convenience method that creates an instance of theThe currently supported values for
FieldNamearename,description,timezone, andresourceID.StringCondition.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)
-
-