Interface Statistics.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<Statistics.Builder,
,Statistics> SdkBuilder<Statistics.Builder,
,Statistics> SdkPojo
- Enclosing class:
Statistics
-
Method Summary
Modifier and TypeMethodDescriptionFor a numeric field, the average value in the field.The number of values in the field.countDistinct
(Integer countDistinct) The number of distinct values in the field.countDistinctLong
(Long countDistinctLong) The number of distinct values in the field.The number of values in the field.The number of NAN (not a number) values in the field.countNanLong
(Long countNanLong) The number of NAN (not a number) values in the field.The number of null values in the field.countNullLong
(Long countNullLong) The number of null values in the field.For a numeric field, the maximum value in the field.For a numeric field, the minimum value in the field.For a numeric field, the standard deviation.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 Details
-
count
The number of values in the field. If the response value is -1, refer to
CountLong
.- Parameters:
count
- The number of values in the field. If the response value is -1, refer toCountLong
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
countDistinct
The number of distinct values in the field. If the response value is -1, refer to
CountDistinctLong
.- Parameters:
countDistinct
- The number of distinct values in the field. If the response value is -1, refer toCountDistinctLong
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
countNull
The number of null values in the field. If the response value is -1, refer to
CountNullLong
.- Parameters:
countNull
- The number of null values in the field. If the response value is -1, refer toCountNullLong
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
countNan
The number of NAN (not a number) values in the field. If the response value is -1, refer to
CountNanLong
.- Parameters:
countNan
- The number of NAN (not a number) values in the field. If the response value is -1, refer toCountNanLong
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
min
For a numeric field, the minimum value in the field.
- Parameters:
min
- For a numeric field, the minimum value in the field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
max
For a numeric field, the maximum value in the field.
- Parameters:
max
- For a numeric field, the maximum value in the field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
avg
For a numeric field, the average value in the field.
- Parameters:
avg
- For a numeric field, the average value in the field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stddev
For a numeric field, the standard deviation.
- Parameters:
stddev
- For a numeric field, the standard deviation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
countLong
The number of values in the field.
CountLong
is used instead ofCount
if the value is greater than 2,147,483,647.- Parameters:
countLong
- The number of values in the field.CountLong
is used instead ofCount
if the value is greater than 2,147,483,647.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
countDistinctLong
The number of distinct values in the field.
CountDistinctLong
is used instead ofCountDistinct
if the value is greater than 2,147,483,647.- Parameters:
countDistinctLong
- The number of distinct values in the field.CountDistinctLong
is used instead ofCountDistinct
if the value is greater than 2,147,483,647.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
countNullLong
The number of null values in the field.
CountNullLong
is used instead ofCountNull
if the value is greater than 2,147,483,647.- Parameters:
countNullLong
- The number of null values in the field.CountNullLong
is used instead ofCountNull
if the value is greater than 2,147,483,647.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
countNanLong
The number of NAN (not a number) values in the field.
CountNanLong
is used instead ofCountNan
if the value is greater than 2,147,483,647.- Parameters:
countNanLong
- The number of NAN (not a number) values in the field.CountNanLong
is used instead ofCountNan
if the value is greater than 2,147,483,647.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-