Class ImmutableExponentialHistogramBuckets
- java.lang.Object
-
- io.opentelemetry.sdk.metrics.internal.data.ImmutableExponentialHistogramBuckets
-
- All Implemented Interfaces:
ExponentialHistogramBuckets
- Direct Known Subclasses:
AutoValue_ImmutableExponentialHistogramBuckets
@Immutable public abstract class ImmutableExponentialHistogramBuckets extends java.lang.Object implements ExponentialHistogramBuckets
Auto value implementation ofExponentialHistogramBuckets
.This class is internal and is hence not for public use. Its APIs are unstable and can change at any time.
-
-
Constructor Summary
Constructors Constructor Description ImmutableExponentialHistogramBuckets()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ExponentialHistogramBuckets
create(int scale, int offset, java.util.List<java.lang.Long> bucketCounts)
Create a ExponentialHistogramBuckets.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.opentelemetry.sdk.metrics.data.ExponentialHistogramBuckets
getBucketCounts, getOffset, getScale, getTotalCount
-
-
-
-
Method Detail
-
create
public static ExponentialHistogramBuckets create(int scale, int offset, java.util.List<java.lang.Long> bucketCounts)
Create a ExponentialHistogramBuckets.- Returns:
- a ExponentialHistogramBuckets.
-
-