T - The type of the elements contained by the collection.public class CollectionElementMatcher<T> extends ElementMatcher.Junction.AbstractBase<Iterable<? extends T>>
false.ElementMatcher.Junction.AbstractBase<V>, ElementMatcher.Junction.Conjunction<W>, ElementMatcher.Junction.Disjunction<W>ElementMatcher.Junction<S>| Constructor and Description |
|---|
CollectionElementMatcher(int index,
ElementMatcher<? super T> elementMatcher)
Creates a new matcher for an element in a 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 CollectionElementMatcher(int index,
ElementMatcher<? super T> elementMatcher)
index - The index of the matched element.elementMatcher - The matcher for the given element, if it exists.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–2016. All rights reserved.