Interface PropertyPredicate.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PropertyPredicate.Builder,PropertyPredicate>,SdkBuilder<PropertyPredicate.Builder,PropertyPredicate>,SdkPojo
- Enclosing class:
- PropertyPredicate
public static interface PropertyPredicate.Builder extends SdkPojo, CopyableBuilder<PropertyPredicate.Builder,PropertyPredicate>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PropertyPredicate.Buildercomparator(String comparator)The comparator used to compare this property to others.PropertyPredicate.Buildercomparator(Comparator comparator)The comparator used to compare this property to others.PropertyPredicate.Builderkey(String key)The key of the property.PropertyPredicate.Buildervalue(String value)The value of the property.-
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
PropertyPredicate.Builder key(String key)
The key of the property.
- Parameters:
key- The key of the property.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
PropertyPredicate.Builder value(String value)
The value of the property.
- Parameters:
value- The value of the property.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
comparator
PropertyPredicate.Builder comparator(String comparator)
The comparator used to compare this property to others.
- Parameters:
comparator- The comparator used to compare this property to others.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
Comparator,Comparator
-
comparator
PropertyPredicate.Builder comparator(Comparator comparator)
The comparator used to compare this property to others.
- Parameters:
comparator- The comparator used to compare this property to others.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
Comparator,Comparator
-
-