![JAR search and dependency download from the Maven repository](/logo.png)
org.codegas.commons.lang.compare.Comparison Maven / Gradle / Ivy
The newest version!
package org.codegas.commons.lang.compare;
public final class Comparison {
private Comparison() {
}
public static boolean areValuesClose(double value1, double value2, double threshold) {
return Math.abs(value1 - value2) < threshold;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy