org.testifyproject.bytebuddy.matcher.VisibilityMatcher Maven / Gradle / Ivy
package org.testifyproject.bytebuddy.matcher;
import lombok.EqualsAndHashCode;
import org.testifyproject.bytebuddy.description.ByteCodeElement;
import org.testifyproject.bytebuddy.description.type.TypeDescription;
/**
* An element matcher that validates that a given byte code element is visible to a given type.
*
* @param The type of the matched entity.
*/
@EqualsAndHashCode(callSuper = false)
public class VisibilityMatcher extends ElementMatcher.Junction.AbstractBase {
/**
* The type that is to be checked for its viewing rights.
*/
private final TypeDescription typeDescription;
/**
* Creates a matcher that validates that a byte code element can be seen by a given type.
*
* @param typeDescription The type that is to be checked for its viewing rights.
*/
public VisibilityMatcher(TypeDescription typeDescription) {
this.typeDescription = typeDescription;
}
@Override
public boolean matches(T target) {
return target.isVisibleTo(typeDescription);
}
@Override
public String toString() {
return "isVisibleTo(" + typeDescription + ")";
}
}