| Class | Description |
|---|---|
| AbstractBinaryComparableMatcher |
This class is the base class used for doing binary operations when both operands are
Comparable objects |
| AbstractBinaryMatcher |
Used for matching operands to a binary operator
|
| AbstractCollectionMatcher |
This class paves the way for matching a value against a collection of items
|
| AbstractSimpleComparableMatcher |
This is used to compare two items.
|
| AbstractSimpleMatcher |
This matcher is used to determine if a condition holds for a single parameter
|
| AbstractSimpleStringMatcher |
Used when the subject of the operation is a string
|
| AbstractStateMatcher |
This is used when there is no argument needed to determine the validity of the match
|
| ContainingMatcher |
This class will look for a substring in the passed string value by converting both the needle and
the haystack to lower case.
|
| EndingWithMatcher |
This class is used to find out if the given value ends with the passed argument.
|
| IsBetweenMatcher |
This comparing matcher will determine if the passed value is larger or equal to the first passed argument and
smaller or equal to the second passed argument, thus determining if it falls between the two values.
|
| IsEqualToMatcher |
This matcher will check to see if the value is strictly equal to the value passed as the
argument of the query method.
|
| IsFalseMatcher |
This will check to see if the value on the entity object is false.
|
| IsGreaterThanMatcher |
This will check to see if the value on the object is greater than the argument being passed
(the pivot).
|
| IsGreaterThanOrEqualToMatcher |
This will check to see if the value on the object is greater than or equal to
the argument being passed (the pivot).
|
| IsInMatcher |
This matcher checks to see if the argument being passed (the collection) contains the value on
the object.
|
| IsLessThanMatcher |
This will check to see if the value on the object is less than the argument being passed
(the pivot).
|
| IsLessThanOrEqualToMatcher |
This will check to see if the value on the object is less than the or equal to argument being passed
(the pivot).
|
| IsLikeMatcher |
This matcher checks to see if the two values are the same, barring case differences.
|
| IsNotBetweenMatcher |
This comparing matcher will determine if the passed value is smaller or equal to the first passed argument and
larger or equal to the second passed argument, thus determining if it does not fall between the two values
(if they are in in ascending order themselves).
|
| IsNotInMatcher |
This matcher checks whether or not the argument passed to the query method (the collection) contains the
value on the object itself and fails the check if it does.
|
| IsNotLikeMatcher |
This matcher will return true if the argument passed is not equal to the value on the object, even
when their case differences are ignored.
|
| IsNotMatcher |
This matcher will determine if the two values are not equal.
|
| IsNotNullMatcher |
This matcher will determine if the value on the object is not null
|
| IsNullMatcher |
This matcher will return true if the value on the object is null
|
| IsTrueMatcher |
This will check to see if the value on the entity object is true.
|
| RegexMatcher |
This matcher will determine if the value on the object (a string) matches the pattern being passed.
|
| StartingWithMatcher |
This class is used to find out if the given value starts with the passed argument.
|
Copyright © 2014–2016. All rights reserved.