Class AutoValue_ImmutableMeasurement
- java.lang.Object
-
- io.opentelemetry.sdk.metrics.internal.state.ImmutableMeasurement
-
- io.opentelemetry.sdk.metrics.internal.state.AutoValue_ImmutableMeasurement
-
- All Implemented Interfaces:
Measurement
@Generated("com.google.auto.value.processor.AutoValueProcessor") final class AutoValue_ImmutableMeasurement extends ImmutableMeasurement
-
-
Field Summary
Fields Modifier and Type Field Description private Attributes
attributes
private double
doubleValue
private long
epochNanos
private boolean
hasDoubleValue
private boolean
hasLongValue
private long
longValue
private long
startEpochNanos
-
Constructor Summary
Constructors Constructor Description AutoValue_ImmutableMeasurement(long startEpochNanos, long epochNanos, boolean hasLongValue, long longValue, boolean hasDoubleValue, double doubleValue, Attributes attributes)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Attributes
attributes()
double
doubleValue()
long
epochNanos()
boolean
equals(java.lang.Object o)
boolean
hasDoubleValue()
int
hashCode()
boolean
hasLongValue()
long
longValue()
long
startEpochNanos()
java.lang.String
toString()
-
Methods inherited from class io.opentelemetry.sdk.metrics.internal.state.ImmutableMeasurement
createDouble, createLong, withAttributes, withStartEpochNanos
-
-
-
-
Field Detail
-
startEpochNanos
private final long startEpochNanos
-
epochNanos
private final long epochNanos
-
hasLongValue
private final boolean hasLongValue
-
longValue
private final long longValue
-
hasDoubleValue
private final boolean hasDoubleValue
-
doubleValue
private final double doubleValue
-
attributes
private final Attributes attributes
-
-
Constructor Detail
-
AutoValue_ImmutableMeasurement
AutoValue_ImmutableMeasurement(long startEpochNanos, long epochNanos, boolean hasLongValue, long longValue, boolean hasDoubleValue, double doubleValue, Attributes attributes)
-
-
Method Detail
-
startEpochNanos
public long startEpochNanos()
-
epochNanos
public long epochNanos()
-
hasLongValue
public boolean hasLongValue()
-
longValue
public long longValue()
-
hasDoubleValue
public boolean hasDoubleValue()
-
doubleValue
public double doubleValue()
-
attributes
public Attributes attributes()
-
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
-
-