Interface NumberFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<NumberFilter.Builder,NumberFilter>,SdkBuilder<NumberFilter.Builder,NumberFilter>,SdkPojo
- Enclosing class:
- NumberFilter
public static interface NumberFilter.Builder extends SdkPojo, CopyableBuilder<NumberFilter.Builder,NumberFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NumberFilter.BuilderlowerInclusive(Double lowerInclusive)The lowest number to be included in the filter.NumberFilter.BuilderupperInclusive(Double upperInclusive)The highest number to be included in the filter.-
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
-
lowerInclusive
NumberFilter.Builder lowerInclusive(Double lowerInclusive)
The lowest number to be included in the filter.
- Parameters:
lowerInclusive- The lowest number to be included in the filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
upperInclusive
NumberFilter.Builder upperInclusive(Double upperInclusive)
The highest number to be included in the filter.
- Parameters:
upperInclusive- The highest number to be included in the filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-