Package org.anchoranalysis.math.relation
Class GreaterThanEqualTo
Object
org.anchoranalysis.math.relation.GreaterThanEqualTo
- All Implemented Interfaces:
DoubleBiPredicate
public class GreaterThanEqualTo extends Object implements DoubleBiPredicate
Returns true iff
valueFirst is greater than or equal to valueSecond.- Author:
- Owen Feehan
-
Constructor Summary
Constructors Constructor Description GreaterThanEqualTo() -
Method Summary
Modifier and Type Method Description booleantest(double valueFirst, double valueSecond)Considers the relationship betweenvalueFirstandvalueSecond.
-
Constructor Details
-
GreaterThanEqualTo
public GreaterThanEqualTo()
-
-
Method Details
-
test
public boolean test(double valueFirst, double valueSecond)Description copied from interface:DoubleBiPredicateConsiders the relationship betweenvalueFirstandvalueSecond.- Specified by:
testin interfaceDoubleBiPredicate- Parameters:
valueFirst- the first-value.valueSecond- the second-value.- Returns:
- true if the relation holds.
-