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

io.github.rmuhamedgaliev.util.InformationMeasure Maven / Gradle / Ivy

Go to download

Library for getting information about local computer implemented on java. Used 2 Linux commands, other implemented on Java.

There is a newer version: 0.0.0.4
Show newest version
package io.github.rmuhamedgaliev.util;

/**
 * Developer: Muhamedgaliev Rinat
 * Date: 1/19/13
 */
public enum InformationMeasure
{
    KiB("KiB"),
    MiB("MiB"),
    GiB("GiB");

    private String measure;

    private InformationMeasure(String measure)
    {
        this.measure = measure;
    }

    public String getMeasure()
    {
        return measure;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy