Package io.opencensus.metrics.export
Class AutoValue_Summary_Snapshot_ValueAtPercentile
- java.lang.Object
-
- io.opencensus.metrics.export.Summary.Snapshot.ValueAtPercentile
-
- io.opencensus.metrics.export.AutoValue_Summary_Snapshot_ValueAtPercentile
-
@Generated("com.google.auto.value.processor.AutoValueProcessor") final class AutoValue_Summary_Snapshot_ValueAtPercentile extends Summary.Snapshot.ValueAtPercentile
-
-
Field Summary
Fields Modifier and Type Field Description private double
percentile
private double
value
-
Constructor Summary
Constructors Constructor Description AutoValue_Summary_Snapshot_ValueAtPercentile(double percentile, double value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
double
getPercentile()
Returns the percentile in thisValueAtPercentile
.double
getValue()
Returns the value in thisValueAtPercentile
.int
hashCode()
java.lang.String
toString()
-
Methods inherited from class io.opencensus.metrics.export.Summary.Snapshot.ValueAtPercentile
create
-
-
-
-
Method Detail
-
getPercentile
public double getPercentile()
Description copied from class:Summary.Snapshot.ValueAtPercentile
Returns the percentile in thisValueAtPercentile
.Must be in the interval (0.0, 100.0].
- Specified by:
getPercentile
in classSummary.Snapshot.ValueAtPercentile
- Returns:
- the percentile in this
ValueAtPercentile
.
-
getValue
public double getValue()
Description copied from class:Summary.Snapshot.ValueAtPercentile
Returns the value in thisValueAtPercentile
.- Specified by:
getValue
in classSummary.Snapshot.ValueAtPercentile
- Returns:
- the value in this
ValueAtPercentile
.
-
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
-
-