HistogramProtoOrBuilder

public interface HistogramProtoOrBuilder
Known Indirect Subclasses

Public Methods

abstract double
getBucket(int index)
repeated double bucket = 7 [packed = true];
abstract int
getBucketCount()
repeated double bucket = 7 [packed = true];
abstract double
getBucketLimit(int index)
 Parallel arrays encoding the bucket boundaries and the bucket values.
abstract int
getBucketLimitCount()
 Parallel arrays encoding the bucket boundaries and the bucket values.
abstract List<Double>
getBucketLimitList()
 Parallel arrays encoding the bucket boundaries and the bucket values.
abstract List<Double>
getBucketList()
repeated double bucket = 7 [packed = true];
abstract double
getMax()
double max = 2;
abstract double
getMin()
double min = 1;
abstract double
getNum()
double num = 3;
abstract double
getSum()
double sum = 4;
abstract double
getSumSquares()
double sum_squares = 5;

Public Methods

public abstract double getBucket (int index)

repeated double bucket = 7 [packed = true];

public abstract int getBucketCount ()

repeated double bucket = 7 [packed = true];

public abstract double getBucketLimit (int index)

 Parallel arrays encoding the bucket boundaries and the bucket values.
 bucket(i) is the count for the bucket i.  The range for
 a bucket is:
   i == 0:  -DBL_MAX .. bucket_limit(0)
   i != 0:  bucket_limit(i-1) .. bucket_limit(i)
 
repeated double bucket_limit = 6 [packed = true];

public abstract int getBucketLimitCount ()

 Parallel arrays encoding the bucket boundaries and the bucket values.
 bucket(i) is the count for the bucket i.  The range for
 a bucket is:
   i == 0:  -DBL_MAX .. bucket_limit(0)
   i != 0:  bucket_limit(i-1) .. bucket_limit(i)
 
repeated double bucket_limit = 6 [packed = true];

public abstract List<Double> getBucketLimitList ()

 Parallel arrays encoding the bucket boundaries and the bucket values.
 bucket(i) is the count for the bucket i.  The range for
 a bucket is:
   i == 0:  -DBL_MAX .. bucket_limit(0)
   i != 0:  bucket_limit(i-1) .. bucket_limit(i)
 
repeated double bucket_limit = 6 [packed = true];

public abstract List<Double> getBucketList ()

repeated double bucket = 7 [packed = true];

public abstract double getMax ()

double max = 2;

public abstract double getMin ()

double min = 1;

public abstract double getNum ()

double num = 3;

public abstract double getSum ()

double sum = 4;

public abstract double getSumSquares ()

double sum_squares = 5;