![JAR search and dependency download from the Maven repository](/logo.png)
org.joo.libra.numeric.LessThanPredicate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of joo-libra Show documentation
Show all versions of joo-libra Show documentation
Java Predicate with SQL-like syntax support
package org.joo.libra.numeric;
import org.joo.libra.common.BinaryPredicate;
import org.joo.libra.common.HasValue;
public class LessThanPredicate extends BinaryPredicate {
public LessThanPredicate(HasValue one, HasValue other) {
super(one, other);
}
@Override
protected boolean doSatisifiedBy(Number one, Number other) {
return NumericComparator.compare(one, other) < 0;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy