org.hamcrest.core
Class AllOf<T>

java.lang.Object
  extended by org.hamcrest.BaseMatcher<T>
      extended by org.hamcrest.core.AllOf<T>
All Implemented Interfaces:
org.hamcrest.Matcher<T>, org.hamcrest.SelfDescribing

public class AllOf<T>
extends org.hamcrest.BaseMatcher<T>

Calculates the logical conjunction of two matchers. Evaluation is shortcut, so that the second matcher is not called if the first matcher returns false.


Constructor Summary
AllOf(java.lang.Iterable<org.hamcrest.Matcher<? extends T>> matchers)
           
 
Method Summary
static
<T> org.hamcrest.Matcher<T>
allOf(java.lang.Iterable<org.hamcrest.Matcher<? extends T>> matchers)
          Evaluates to true only if ALL of the passed in matchers evaluate to true.
static
<T> org.hamcrest.Matcher<T>
allOf(org.hamcrest.Matcher<? extends T>... matchers)
          Evaluates to true only if ALL of the passed in matchers evaluate to true.
 void describeTo(org.hamcrest.Description description)
           
 boolean matches(java.lang.Object o)
           
 
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

AllOf

public AllOf(java.lang.Iterable<org.hamcrest.Matcher<? extends T>> matchers)
Method Detail

matches

public boolean matches(java.lang.Object o)

describeTo

public void describeTo(org.hamcrest.Description description)

allOf

public static <T> org.hamcrest.Matcher<T> allOf(org.hamcrest.Matcher<? extends T>... matchers)
Evaluates to true only if ALL of the passed in matchers evaluate to true.


allOf

public static <T> org.hamcrest.Matcher<T> allOf(java.lang.Iterable<org.hamcrest.Matcher<? extends T>> matchers)
Evaluates to true only if ALL of the passed in matchers evaluate to true.