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

io.castled.utils.SizeUtils Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package io.castled.utils;

public class SizeUtils {

    public static long convertGBToBytes(long sizeInGB) {
        return sizeInGB * 1024 * 1024;
    }

    public static long convertMBToBytes(long sizeInMB) {
        return sizeInMB * 1024 * 1024;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy