Package io.opencensus.proto.metrics.v1
Interface DistributionValue.BucketOptions.ExplicitOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DistributionValue.BucketOptions.Explicit,DistributionValue.BucketOptions.Explicit.Builder
- Enclosing class:
- DistributionValue.BucketOptions
public static interface DistributionValue.BucketOptions.ExplicitOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description doublegetBounds(int index)The values must be strictly increasing and > 0.intgetBoundsCount()The values must be strictly increasing and > 0.List<Double>getBoundsList()The values must be strictly increasing and > 0.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getBoundsList
List<Double> getBoundsList()
The values must be strictly increasing and > 0.
repeated double bounds = 1;- Returns:
- A list containing the bounds.
-
getBoundsCount
int getBoundsCount()
The values must be strictly increasing and > 0.
repeated double bounds = 1;- Returns:
- The count of bounds.
-
getBounds
double getBounds(int index)
The values must be strictly increasing and > 0.
repeated double bounds = 1;- Parameters:
index- The index of the element to return.- Returns:
- The bounds at the given index.
-
-