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 AggregationTemporality
aggregationTemporality
private 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 boolean
equals(java.lang.Object o)
AggregationTemporality
getAggregationTemporality()
Returns the histogramAggregationTemporality
.java.util.Collection<HistogramPointData>
getPoints()
Returns the dataPointData
s for this metric.int
hashCode()
java.lang.String
toString()
-
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:HistogramData
Returns the histogramAggregationTemporality
.
-
getPoints
public java.util.Collection<HistogramPointData> getPoints()
Description copied from interface:Data
Returns the dataPointData
s for this metric.- Returns:
- the data
PointData
s for this metric, or emptyCollection
if no points.
-
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
-
-