All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yammer.metrics.util.PercentGauge Maven / Gradle / Ivy

There is a newer version: 3.0.0-BETA1
Show newest version
package com.yammer.metrics.util;

/**
 * A {@link RatioGauge} extension which returns a percentage, not a ratio.
 */
public abstract class PercentGauge extends RatioGauge {
    private static final int ONE_HUNDRED = 100;

    @Override
    public Double value() {
        return super.value() * ONE_HUNDRED;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy