Class AutoValue_ImmutableValueAtQuantile
- java.lang.Object
-
- io.opentelemetry.sdk.metrics.internal.data.ImmutableValueAtQuantile
-
- io.opentelemetry.sdk.metrics.internal.data.AutoValue_ImmutableValueAtQuantile
-
- All Implemented Interfaces:
ValueAtQuantile
@Generated("com.google.auto.value.processor.AutoValueProcessor") final class AutoValue_ImmutableValueAtQuantile extends ImmutableValueAtQuantile
-
-
Constructor Summary
Constructors Constructor Description AutoValue_ImmutableValueAtQuantile(double quantile, double value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
double
getQuantile()
Returns the quantile of a distribution.double
getValue()
Returns the value at the given quantile of a distribution.int
hashCode()
java.lang.String
toString()
-
Methods inherited from class io.opentelemetry.sdk.metrics.internal.data.ImmutableValueAtQuantile
create
-
-
-
-
Method Detail
-
getQuantile
public double getQuantile()
Description copied from interface:ValueAtQuantile
Returns the quantile of a distribution. Must be in the interval [0.0, 1.0].
-
getValue
public double getValue()
Description copied from interface:ValueAtQuantile
Returns the value at the given quantile of a distribution.
-
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
-
-