org.hamcrest.collection
Class IsIterableWithSize<E>

java.lang.Object
  extended by org.hamcrest.BaseMatcher<T>
      extended by org.hamcrest.TypeSafeDiagnosingMatcher<T>
          extended by org.hamcrest.FeatureMatcher<java.lang.Iterable<E>,java.lang.Integer>
              extended by org.hamcrest.collection.IsIterableWithSize<E>
All Implemented Interfaces:
Matcher<java.lang.Iterable<E>>, SelfDescribing

public class IsIterableWithSize<E>
extends FeatureMatcher<java.lang.Iterable<E>,java.lang.Integer>


Constructor Summary
IsIterableWithSize(Matcher<? super java.lang.Integer> sizeMatcher)
           
 
Method Summary
protected  java.lang.Integer featureValueOf(java.lang.Iterable<E> actual)
          Implement this to extract the interesting feature.
static
<E> Matcher<java.lang.Iterable<E>>
iterableWithSize(int size)
           
static
<E> Matcher<java.lang.Iterable<E>>
iterableWithSize(Matcher<? super java.lang.Integer> sizeMatcher)
           
 
Methods inherited from class org.hamcrest.FeatureMatcher
describeTo, matchesSafely
 
Methods inherited from class org.hamcrest.TypeSafeDiagnosingMatcher
describeMismatch, matches
 
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

IsIterableWithSize

public IsIterableWithSize(Matcher<? super java.lang.Integer> sizeMatcher)
Method Detail

featureValueOf

protected java.lang.Integer featureValueOf(java.lang.Iterable<E> actual)
Description copied from class: FeatureMatcher
Implement this to extract the interesting feature.

Specified by:
featureValueOf in class FeatureMatcher<java.lang.Iterable<E>,java.lang.Integer>
Parameters:
actual - the target object
Returns:
the feature to be matched

iterableWithSize

public static <E> Matcher<java.lang.Iterable<E>> iterableWithSize(Matcher<? super java.lang.Integer> sizeMatcher)

iterableWithSize

public static <E> Matcher<java.lang.Iterable<E>> iterableWithSize(int size)