public static interface Statistics.Builder extends SdkPojo, CopyableBuilder<Statistics.Builder,Statistics>
| Modifier and Type | Method and Description |
|---|---|
Statistics.Builder |
avg(Double avg)
For a numeric field, the average value in the field.
|
Statistics.Builder |
count(Integer count)
The number of values in the field.
|
Statistics.Builder |
countDistinct(Integer countDistinct)
The number of distinct values in the field.
|
Statistics.Builder |
countDistinctLong(Long countDistinctLong)
The number of distinct values in the field.
|
Statistics.Builder |
countLong(Long countLong)
The number of values in the field.
|
Statistics.Builder |
countNan(Integer countNan)
The number of NAN (not a number) values in the field.
|
Statistics.Builder |
countNanLong(Long countNanLong)
The number of NAN (not a number) values in the field.
|
Statistics.Builder |
countNull(Integer countNull)
The number of null values in the field.
|
Statistics.Builder |
countNullLong(Long countNullLong)
The number of null values in the field.
|
Statistics.Builder |
max(String max)
For a numeric field, the maximum value in the field.
|
Statistics.Builder |
min(String min)
For a numeric field, the minimum value in the field.
|
Statistics.Builder |
stddev(Double stddev)
For a numeric field, the standard deviation.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildStatistics.Builder count(Integer count)
The number of values in the field. If the response value is -1, refer to CountLong.
count - The number of values in the field. If the response value is -1, refer to CountLong.Statistics.Builder countDistinct(Integer countDistinct)
The number of distinct values in the field. If the response value is -1, refer to
CountDistinctLong.
countDistinct - The number of distinct values in the field. If the response value is -1, refer to
CountDistinctLong.Statistics.Builder countNull(Integer countNull)
The number of null values in the field. If the response value is -1, refer to CountNullLong.
countNull - The number of null values in the field. If the response value is -1, refer to
CountNullLong.Statistics.Builder countNan(Integer countNan)
The number of NAN (not a number) values in the field. If the response value is -1, refer to
CountNanLong.
countNan - The number of NAN (not a number) values in the field. If the response value is -1, refer to
CountNanLong.Statistics.Builder min(String min)
For a numeric field, the minimum value in the field.
min - For a numeric field, the minimum value in the field.Statistics.Builder max(String max)
For a numeric field, the maximum value in the field.
max - For a numeric field, the maximum value in the field.Statistics.Builder avg(Double avg)
For a numeric field, the average value in the field.
avg - For a numeric field, the average value in the field.Statistics.Builder stddev(Double stddev)
For a numeric field, the standard deviation.
stddev - For a numeric field, the standard deviation.Statistics.Builder countLong(Long countLong)
The number of values in the field. CountLong is used instead of Count if the value
is greater than 2,147,483,647.
countLong - The number of values in the field. CountLong is used instead of Count if the
value is greater than 2,147,483,647.Statistics.Builder countDistinctLong(Long countDistinctLong)
The number of distinct values in the field. CountDistinctLong is used instead of
CountDistinct if the value is greater than 2,147,483,647.
countDistinctLong - The number of distinct values in the field. CountDistinctLong is used instead of
CountDistinct if the value is greater than 2,147,483,647.Statistics.Builder countNullLong(Long countNullLong)
The number of null values in the field. CountNullLong is used instead of CountNull
if the value is greater than 2,147,483,647.
countNullLong - The number of null values in the field. CountNullLong is used instead of
CountNull if the value is greater than 2,147,483,647.Statistics.Builder countNanLong(Long countNanLong)
The number of NAN (not a number) values in the field. CountNanLong is used instead of
CountNan if the value is greater than 2,147,483,647.
countNanLong - The number of NAN (not a number) values in the field. CountNanLong is used instead of
CountNan if the value is greater than 2,147,483,647.Copyright © 2023. All rights reserved.