Package com.codahale.metrics
Class RatioGauge.Ratio
java.lang.Object
com.codahale.metrics.RatioGauge.Ratio
- Enclosing class:
- RatioGauge
A ratio of one quantity to another.
-
Method Summary
Modifier and TypeMethodDescriptiondoublegetValue()Returns the ratio, which is either adoublebetween 0 and 1 (inclusive) orNaN.static RatioGauge.Ratioof(double numerator, double denominator) Creates a new ratio with the given numerator and denominator.toString()
-
Method Details
-
of
Creates a new ratio with the given numerator and denominator.- Parameters:
numerator- the numerator of the ratiodenominator- the denominator of the ratio- Returns:
numerator:denominator
-
getValue
public double getValue()Returns the ratio, which is either adoublebetween 0 and 1 (inclusive) orNaN.- Returns:
- the ratio
-
toString
-