Package com.google.cloud.automl.v1beta1
Interface Float64Stats.HistogramBucketOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Float64Stats.HistogramBucket
,Float64Stats.HistogramBucket.Builder
- Enclosing class:
- Float64Stats
public static interface Float64Stats.HistogramBucketOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getCount()
The number of data values that are in the bucket, i.e.double
getMax()
The maximum value of the bucket, exclusive unless max = `"Infinity"`, in which case it's inclusive.double
getMin()
The minimum value of the bucket, inclusive.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getMin
double getMin()
The minimum value of the bucket, inclusive.
double min = 1;
- Returns:
- The min.
-
getMax
double getMax()
The maximum value of the bucket, exclusive unless max = `"Infinity"`, in which case it's inclusive.
double max = 2;
- Returns:
- The max.
-
getCount
long getCount()
The number of data values that are in the bucket, i.e. are between min and max values.
int64 count = 3;
- Returns:
- The count.
-
-