public static interface Distribution.LinearBucketsOrBuilder extends MessageOrBuilderImplements
MessageOrBuilderMethods
getNumFiniteBuckets()
public abstract int getNumFiniteBuckets() The number of finite buckets. With the underflow and overflow buckets,
the total number of buckets is num_finite_buckets + 2.
See comments on bucket_options for details.
int32 num_finite_buckets = 1;
| Returns | |
|---|---|
| Type | Description |
int |
The numFiniteBuckets. |
getOffset()
public abstract double getOffset()The i'th linear bucket covers the interval [offset + (i-1) * width, offset + i * width) where i ranges from 1 to num_finite_buckets, inclusive.
double offset = 3;
| Returns | |
|---|---|
| Type | Description |
double |
The offset. |
getWidth()
public abstract double getWidth()The i'th linear bucket covers the interval [offset + (i-1) * width, offset + i * width) where i ranges from 1 to num_finite_buckets, inclusive. Must be strictly positive.
double width = 2;
| Returns | |
|---|---|
| Type | Description |
double |
The width. |