
be.bagofwords.application.memory.MemoryStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bow-utils Show documentation
Show all versions of bow-utils Show documentation
Utility classes that are used in the count-db project and other bow-* projects
The newest version!
package be.bagofwords.application.memory;
/**
* Created by Koen Deschacht ([email protected]) on 9/9/14.
*/
public enum MemoryStatus {
FREE(0.0), SOMEWHAT_LOW(0.8), LOW(0.85), CRITICAL(0.90);
private double minMemoryUsage;
MemoryStatus(double minMemoryUsage) {
this.minMemoryUsage = minMemoryUsage;
}
public double getMinMemoryUsage() {
return minMemoryUsage;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy