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

org.joo.libra.numeric.GreaterEqualPredicate Maven / Gradle / Ivy

There is a newer version: 2.1.2
Show newest version
package org.joo.libra.numeric;

import org.joo.libra.common.BinaryPredicate;
import org.joo.libra.common.HasValue;
import org.joo.libra.support.NumericComparator;

/**
 * Represents a numeric greater than or equals to predicate
 * 
 * @author griever
 *
 */
public class GreaterEqualPredicate extends BinaryPredicate {

	public GreaterEqualPredicate(final HasValue one, final HasValue other) {
		super(one, other);
	}

	@Override
	protected boolean doSatisifiedBy(final Number one, final Number other) {
		return NumericComparator.compare(one, other) >= 0;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy