Interface Comparison
public interface Comparison
A Comparison represents and arbitrary comparison of two
Numerals
. Has default implementations of
greaterThan()
, greaterOrEqual()
, lesserThan()
, lesserOrEqual()
, equal()
and strictEqual()
.-
Method Summary
Modifier and TypeMethodDescriptionboolean
static Comparison
equal()
static Comparison
static Comparison
static Comparison
static Comparison
predicate
(ComparisonContext context, Numeral other) static Comparison
-
Method Details
-
compare
-
greaterThan
- Returns:
- comparison that returns
true
if the firstNumeral
is greater than the second Numeral
-
greaterOrEqual
- Returns:
- comparison that returns
true
if the firstNumeral
is greater than or equal to the second Numeral
-
lesserThan
- Returns:
- comparison that returns
true
if the firstNumeral
is lesser than the second Numeral
-
lesserOrEqual
- Returns:
- comparison that returns
true
if the firstNumeral
is lesser than or equal to the second Numeral
-
equal
- Returns:
- comparison that returns
true
if the firstNumeral
is equal to the second Numeral
-
strictEqual
- Returns:
- comparison that returns
true
if the firstNumeral
is strictly equal to the second Numeral. That is, the Numerals do not only represent the same number, but are also of the sameNumeralType
-
predicate
-
predicate
- Parameters:
context
-ComparisonContext
for this comparisonother
- secondNumeral
to be compared- Returns:
Predicate
forValue
that returns the result of this comparison against a second Numeral with the specifiedComparisonContext
-