Class ValueAtPercentile

java.lang.Object
io.micrometer.core.instrument.distribution.ValueAtPercentile

public final class ValueAtPercentile
extends java.lang.Object
A precomputed percentile of a distribution.
  • Constructor Summary

    Constructors
    Constructor Description
    ValueAtPercentile​(double percentile, double value)  
  • Method Summary

    Modifier and Type Method Description
    boolean equals​(java.lang.Object o)  
    int hashCode()  
    double percentile()  
    java.lang.String toString()  
    double value()  
    double value​(java.util.concurrent.TimeUnit unit)  

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • ValueAtPercentile

      public ValueAtPercentile​(double percentile, double value)
  • Method Details

    • percentile

      public double percentile()
    • value

      public double value()
    • value

      public double value​(java.util.concurrent.TimeUnit unit)
    • toString

      public java.lang.String toString()
      Overrides:
      toString in class java.lang.Object
    • equals

      public boolean equals​(java.lang.Object o)
      Overrides:
      equals in class java.lang.Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class java.lang.Object