org.mockito.internal.matchers
Class Or

java.lang.Object
  extended by org.hamcrest.BaseMatcher<T>
      extended by org.mockito.ArgumentMatcher
          extended by org.mockito.internal.matchers.Or
All Implemented Interfaces:
java.io.Serializable, org.hamcrest.Matcher, org.hamcrest.SelfDescribing

public class Or
extends ArgumentMatcher
implements java.io.Serializable

See Also:
Serialized Form

Constructor Summary
Or(java.util.List<org.hamcrest.Matcher> matchers)
           
 
Method Summary
 void describeTo(org.hamcrest.Description description)
           
 boolean matches(java.lang.Object actual)
          Returns whether this matcher accepts the given argument.
 
Methods inherited from class org.hamcrest.BaseMatcher
_dont_implement_Matcher___instead_extend_BaseMatcher_, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Or

public Or(java.util.List<org.hamcrest.Matcher> matchers)
Method Detail

matches

public boolean matches(java.lang.Object actual)
Description copied from class: ArgumentMatcher
Returns whether this matcher accepts the given argument.

The method should never assert if the argument doesn't match. It should only return false.

Specified by:
matches in interface org.hamcrest.Matcher
Specified by:
matches in class ArgumentMatcher
Parameters:
actual - the argument
Returns:
whether this matcher accepts the given argument.

describeTo

public void describeTo(org.hamcrest.Description description)
Specified by:
describeTo in interface org.hamcrest.SelfDescribing
Overrides:
describeTo in class ArgumentMatcher