net.bytebuddy.matcher.CollectionItemMatcher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of byte-buddy-dep Show documentation
Show all versions of byte-buddy-dep Show documentation
Byte Buddy is a Java library for creating Java classes at run time.
This artifact is a build of Byte Buddy with a remaining dependency onto ASM.
You should never depend on this module without repackaging Byte Buddy and ASM into your own namespace.
package net.bytebuddy.matcher;
import lombok.EqualsAndHashCode;
/**
* A list item matcher matches any element of a collection to a given matcher and assures that at least one
* element matches the supplied iterable condition.
*
* @param The type of the matched entity.
*/
@EqualsAndHashCode(callSuper = false)
public class CollectionItemMatcher extends ElementMatcher.Junction.AbstractBase> {
/**
* The element matcher to apply to each element of a collection.
*/
private final ElementMatcher super T> matcher;
/**
* Creates a new matcher that applies another matcher to each element of a matched iterable collection.
*
* @param matcher The element matcher to apply to each element of a iterable collection.
*/
public CollectionItemMatcher(ElementMatcher super T> matcher) {
this.matcher = matcher;
}
@Override
public boolean matches(Iterable extends T> target) {
for (T value : target) {
if (matcher.matches(value)) {
return true;
}
}
return false;
}
@Override
public String toString() {
return "whereOne(" + matcher + ")";
}
}