Class AutoValue_ImmutableHistogramData
- java.lang.Object
-
- io.opentelemetry.sdk.metrics.internal.data.ImmutableHistogramData
-
- io.opentelemetry.sdk.metrics.internal.data.AutoValue_ImmutableHistogramData
-
- All Implemented Interfaces:
Data<HistogramPointData>,HistogramData
@Generated("com.google.auto.value.processor.AutoValueProcessor") final class AutoValue_ImmutableHistogramData extends ImmutableHistogramData
-
-
Field Summary
Fields Modifier and Type Field Description private AggregationTemporalityaggregationTemporalityprivate java.util.Collection<HistogramPointData>points
-
Constructor Summary
Constructors Constructor Description AutoValue_ImmutableHistogramData(AggregationTemporality aggregationTemporality, java.util.Collection<HistogramPointData> points)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)AggregationTemporalitygetAggregationTemporality()Returns the histogramAggregationTemporality.java.util.Collection<HistogramPointData>getPoints()Returns the dataPointDatas for this metric.inthashCode()java.lang.StringtoString()-
Methods inherited from class io.opentelemetry.sdk.metrics.internal.data.ImmutableHistogramData
create, empty
-
-
-
-
Field Detail
-
aggregationTemporality
private final AggregationTemporality aggregationTemporality
-
points
private final java.util.Collection<HistogramPointData> points
-
-
Constructor Detail
-
AutoValue_ImmutableHistogramData
AutoValue_ImmutableHistogramData(AggregationTemporality aggregationTemporality, java.util.Collection<HistogramPointData> points)
-
-
Method Detail
-
getAggregationTemporality
public AggregationTemporality getAggregationTemporality()
Description copied from interface:HistogramDataReturns the histogramAggregationTemporality.
-
getPoints
public java.util.Collection<HistogramPointData> getPoints()
Description copied from interface:DataReturns the dataPointDatas for this metric.- Returns:
- the data
PointDatas for this metric, or emptyCollectionif no points.
-
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
-
-