Companion
Functions
Creates a ParameterMatcher that matches anything This is the weakest ParameterMatcher.
Creates a ParameterMatcher that matches only a given value. This is the strongest ParameterMatcher
Creates a ParameterMatcher that matches any value that is an instance of a given class This is stronger than notNull but weaker than notEq.
Creates a ParameterMatcher that matches based on a given condition. This is stronger than notEq but weaker than oneOf.
Creates a ParameterMatcher that matches anything but a given value This is stronger than isInstance but weaker than matches.
Creates a ParameterMatcher that matches only non-null values This is stronger than any but weaker than isInstance.
Creates a ParameterMatcher that matches any value in a given list This is stronger than matches but weaker than eq.