T - The type of the matched entity.public class CollectionItemMatcher<T> extends ElementMatcher.Junction.AbstractBase<Iterable<? extends T>>
ElementMatcher.Junction.AbstractBase<V>, ElementMatcher.Junction.Conjunction<W>, ElementMatcher.Junction.Disjunction<W>ElementMatcher.Junction<S>| Constructor and Description |
|---|
CollectionItemMatcher(ElementMatcher<? super T> elementMatcher)
Creates a new matcher that applies another matcher to each element of a matched iterable collection.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object other) |
int |
hashCode() |
boolean |
matches(Iterable<? extends T> target)
Matches a target against this element matcher.
|
String |
toString() |
and, orpublic CollectionItemMatcher(ElementMatcher<? super T> elementMatcher)
elementMatcher - The element matcher to apply to each element of a iterable collection.public boolean matches(Iterable<? extends T> target)
ElementMatchertarget - The instance to be matched.true if the given element is matched by this matcher or false otherwise.Copyright © 2014–2015. All rights reserved.