public class Matches extends Object implements ArgumentMatcher<Object>, Serializable
Constructor and Description |
---|
Matches(Pattern pattern) |
Matches(String regex) |
Modifier and Type | Method and Description |
---|---|
boolean |
matches(Object actual)
Informs if this matcher accepts the given argument.
|
String |
toString() |
public boolean matches(Object actual)
ArgumentMatcher
The method should never assert if the argument doesn't match. It should only return false.
See the example in the top level javadoc for ArgumentMatcher
matches
in interface ArgumentMatcher<Object>
actual
- the argumentCopyright © 2022. All rights reserved.