Class AutoValue_ImmutableExponentialHistogramData
- java.lang.Object
-
- io.opentelemetry.sdk.metrics.internal.data.ImmutableExponentialHistogramData
-
- io.opentelemetry.sdk.metrics.internal.data.AutoValue_ImmutableExponentialHistogramData
-
- All Implemented Interfaces:
Data<ExponentialHistogramPointData>,ExponentialHistogramData
@Generated("com.google.auto.value.processor.AutoValueProcessor") final class AutoValue_ImmutableExponentialHistogramData extends ImmutableExponentialHistogramData
-
-
Field Summary
Fields Modifier and Type Field Description private AggregationTemporalityaggregationTemporalityprivate java.util.Collection<ExponentialHistogramPointData>points
-
Constructor Summary
Constructors Constructor Description AutoValue_ImmutableExponentialHistogramData(AggregationTemporality aggregationTemporality, java.util.Collection<ExponentialHistogramPointData> points)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)AggregationTemporalitygetAggregationTemporality()Returns theAggregationTemporalityof this metric.java.util.Collection<ExponentialHistogramPointData>getPoints()Returns the collection ofExponentialHistogramPointDatafor this histogram.inthashCode()java.lang.StringtoString()-
Methods inherited from class io.opentelemetry.sdk.metrics.internal.data.ImmutableExponentialHistogramData
create, empty
-
-
-
-
Field Detail
-
aggregationTemporality
private final AggregationTemporality aggregationTemporality
-
points
private final java.util.Collection<ExponentialHistogramPointData> points
-
-
Constructor Detail
-
AutoValue_ImmutableExponentialHistogramData
AutoValue_ImmutableExponentialHistogramData(AggregationTemporality aggregationTemporality, java.util.Collection<ExponentialHistogramPointData> points)
-
-
Method Detail
-
getAggregationTemporality
public AggregationTemporality getAggregationTemporality()
Description copied from interface:ExponentialHistogramDataReturns theAggregationTemporalityof this metric.AggregationTemporality describes if the aggregator reports delta changes since last report time, or cumulative changes since a fixed start time.
- Returns:
- the
AggregationTemporalityof this metric
-
getPoints
public java.util.Collection<ExponentialHistogramPointData> getPoints()
Description copied from interface:ExponentialHistogramDataReturns the collection ofExponentialHistogramPointDatafor this histogram.- Returns:
- the collection of data points for this histogram.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-