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

com.jelastic.api.core.utils.UsageUtils Maven / Gradle / Ivy

The newest version!
/*Server class MD5: e464e8ac4b6eb1677004756fc190dd2e*/
package com.jelastic.api.core.utils;

/**
 * @name Jelastic API Client
 * @version 8.11.2
 * @copyright Jelastic, Inc.
 */
public class UsageUtils {

    public static double getUsageInPercent(long used, long total) {
        return Math.ceil((used / (double) total) * 100);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy