Class AutoValue_ImmutableDoublePointData
- java.lang.Object
-
- io.opentelemetry.sdk.metrics.internal.data.ImmutableDoublePointData
-
- io.opentelemetry.sdk.metrics.internal.data.AutoValue_ImmutableDoublePointData
-
- All Implemented Interfaces:
DoublePointData,PointData
@Generated("com.google.auto.value.processor.AutoValueProcessor") final class AutoValue_ImmutableDoublePointData extends ImmutableDoublePointData
-
-
Field Summary
Fields Modifier and Type Field Description private Attributesattributesprivate longepochNanosprivate java.util.List<DoubleExemplarData>exemplarsprivate longstartEpochNanosprivate doublevalue
-
Constructor Summary
Constructors Constructor Description AutoValue_ImmutableDoublePointData(long startEpochNanos, long epochNanos, Attributes attributes, double value, java.util.List<DoubleExemplarData> exemplars)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)AttributesgetAttributes()Returns the attributes of the aggregation.longgetEpochNanos()Returns the end time of the aggregation in epoch nanos.java.util.List<DoubleExemplarData>getExemplars()List of exemplars collected from measurements aggregated into this point.longgetStartEpochNanos()Returns the start time of the aggregation in epoch nanos.doublegetValue()Returns the value of the data point.inthashCode()java.lang.StringtoString()-
Methods inherited from class io.opentelemetry.sdk.metrics.internal.data.ImmutableDoublePointData
create, create
-
-
-
-
Field Detail
-
startEpochNanos
private final long startEpochNanos
-
epochNanos
private final long epochNanos
-
attributes
private final Attributes attributes
-
value
private final double value
-
exemplars
private final java.util.List<DoubleExemplarData> exemplars
-
-
Constructor Detail
-
AutoValue_ImmutableDoublePointData
AutoValue_ImmutableDoublePointData(long startEpochNanos, long epochNanos, Attributes attributes, double value, java.util.List<DoubleExemplarData> exemplars)
-
-
Method Detail
-
getStartEpochNanos
public long getStartEpochNanos()
Description copied from interface:PointDataReturns the start time of the aggregation in epoch nanos.
-
getEpochNanos
public long getEpochNanos()
Description copied from interface:PointDataReturns the end time of the aggregation in epoch nanos.
-
getAttributes
public Attributes getAttributes()
Description copied from interface:PointDataReturns the attributes of the aggregation.
-
getValue
public double getValue()
Description copied from interface:DoublePointDataReturns the value of the data point.
-
getExemplars
public java.util.List<DoubleExemplarData> getExemplars()
Description copied from interface:DoublePointDataList of exemplars collected from measurements aggregated into this point.
-
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
-
-