Package org.hamcrest.number
Class OrderingComparison
java.lang.Object
org.hamcrest.number.OrderingComparison
Static methods for building ordering comparisons.
-
Method Summary
Modifier and TypeMethodDescriptionstatic <T extends Comparable<T>>
Matcher<T> comparesEqualTo
(T value) Creates a matcher ofComparable
object that matches when the examined object is equal to the specified value, as reported by thecompareTo
method of the examined object.static <T extends Comparable<T>>
Matcher<T> greaterThan
(T value) Creates a matcher ofComparable
object that matches when the examined object is greater than the specified value, as reported by thecompareTo
method of the examined object.static <T extends Comparable<T>>
Matcher<T> greaterThanOrEqualTo
(T value) Creates a matcher ofComparable
object that matches when the examined object is greater than or equal to the specified value, as reported by thecompareTo
method of the examined object.static <T extends Comparable<T>>
Matcher<T> lessThan
(T value) Creates a matcher ofComparable
object that matches when the examined object is less than the specified value, as reported by thecompareTo
method of the examined object.static <T extends Comparable<T>>
Matcher<T> lessThanOrEqualTo
(T value) Creates a matcher ofComparable
object that matches when the examined object is less than or equal to the specified value, as reported by thecompareTo
method of the examined object.
-
Method Details
-
comparesEqualTo
Creates a matcher ofComparable
object that matches when the examined object is equal to the specified value, as reported by thecompareTo
method of the examined object. For example:assertThat(1, comparesEqualTo(1))
- Type Parameters:
T
- the matcher type.- Parameters:
value
- the value which, when passed to the compareTo method of the examined object, should return zero- Returns:
- The matcher.
-
greaterThan
Creates a matcher ofComparable
object that matches when the examined object is greater than the specified value, as reported by thecompareTo
method of the examined object. For example:assertThat(2, greaterThan(1))
- Type Parameters:
T
- the matcher type.- Parameters:
value
- the value which, when passed to the compareTo method of the examined object, should return greater than zero- Returns:
- The matcher.
-
greaterThanOrEqualTo
Creates a matcher ofComparable
object that matches when the examined object is greater than or equal to the specified value, as reported by thecompareTo
method of the examined object. For example:assertThat(1, greaterThanOrEqualTo(1))
- Type Parameters:
T
- the matcher type.- Parameters:
value
- the value which, when passed to the compareTo method of the examined object, should return greater than or equal to zero- Returns:
- The matcher.
-
lessThan
Creates a matcher ofComparable
object that matches when the examined object is less than the specified value, as reported by thecompareTo
method of the examined object. For example:assertThat(1, lessThan(2))
- Type Parameters:
T
- the matcher type.- Parameters:
value
- the value which, when passed to the compareTo method of the examined object, should return less than zero- Returns:
- The matcher.
-
lessThanOrEqualTo
Creates a matcher ofComparable
object that matches when the examined object is less than or equal to the specified value, as reported by thecompareTo
method of the examined object. For example:assertThat(1, lessThanOrEqualTo(1))
- Type Parameters:
T
- the matcher type.- Parameters:
value
- the value which, when passed to the compareTo method of the examined object, should return less than or equal to zero- Returns:
- The matcher.
-