Class AutoValue_ImmutableLongPointData
- java.lang.Object
-
- io.opentelemetry.sdk.metrics.internal.data.ImmutableLongPointData
-
- io.opentelemetry.sdk.metrics.internal.data.AutoValue_ImmutableLongPointData
-
- All Implemented Interfaces:
LongPointData
,PointData
@Generated("com.google.auto.value.processor.AutoValueProcessor") final class AutoValue_ImmutableLongPointData extends ImmutableLongPointData
-
-
Field Summary
Fields Modifier and Type Field Description private Attributes
attributes
private long
epochNanos
private java.util.List<LongExemplarData>
exemplars
private long
startEpochNanos
private long
value
-
Constructor Summary
Constructors Constructor Description AutoValue_ImmutableLongPointData(long startEpochNanos, long epochNanos, Attributes attributes, long value, java.util.List<LongExemplarData> exemplars)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
Attributes
getAttributes()
Returns the attributes of the aggregation.long
getEpochNanos()
Returns the end time of the aggregation in epoch nanos.java.util.List<LongExemplarData>
getExemplars()
List of exemplars collected from measurements aggregated into this point.long
getStartEpochNanos()
Returns the start time of the aggregation in epoch nanos.long
getValue()
Returns the value of the data point.int
hashCode()
java.lang.String
toString()
-
Methods inherited from class io.opentelemetry.sdk.metrics.internal.data.ImmutableLongPointData
create, create
-
-
-
-
Field Detail
-
startEpochNanos
private final long startEpochNanos
-
epochNanos
private final long epochNanos
-
attributes
private final Attributes attributes
-
value
private final long value
-
exemplars
private final java.util.List<LongExemplarData> exemplars
-
-
Constructor Detail
-
AutoValue_ImmutableLongPointData
AutoValue_ImmutableLongPointData(long startEpochNanos, long epochNanos, Attributes attributes, long value, java.util.List<LongExemplarData> exemplars)
-
-
Method Detail
-
getStartEpochNanos
public long getStartEpochNanos()
Description copied from interface:PointData
Returns the start time of the aggregation in epoch nanos.
-
getEpochNanos
public long getEpochNanos()
Description copied from interface:PointData
Returns the end time of the aggregation in epoch nanos.
-
getAttributes
public Attributes getAttributes()
Description copied from interface:PointData
Returns the attributes of the aggregation.
-
getValue
public long getValue()
Description copied from interface:LongPointData
Returns the value of the data point.
-
getExemplars
public java.util.List<LongExemplarData> getExemplars()
Description copied from interface:LongPointData
List of exemplars collected from measurements aggregated into this point.
-
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
-
-