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

one.xingyi.profile.IProfileInfo Maven / Gradle / Ivy

There is a newer version: 1.5.9
Show newest version
package one.xingyi.profile;

public interface IProfileInfo {
    default long getAvg() {
        int n = getCount();
        long t = getTotal();
        return n == 0 ? 0 : t / n;
    }

    int getCount();

    long getTotal();

    long getSnapshot();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy