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 AggregationTemporality
aggregationTemporality
private 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 boolean
equals(java.lang.Object o)
AggregationTemporality
getAggregationTemporality()
Returns theAggregationTemporality
of this metric.java.util.Collection<ExponentialHistogramPointData>
getPoints()
Returns the collection ofExponentialHistogramPointData
for this histogram.int
hashCode()
java.lang.String
toString()
-
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:ExponentialHistogramData
Returns theAggregationTemporality
of this metric.AggregationTemporality describes if the aggregator reports delta changes since last report time, or cumulative changes since a fixed start time.
- Returns:
- the
AggregationTemporality
of this metric
-
getPoints
public java.util.Collection<ExponentialHistogramPointData> getPoints()
Description copied from interface:ExponentialHistogramData
Returns the collection ofExponentialHistogramPointData
for this histogram.- Returns:
- the collection of data points for this histogram.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-