net.bytebuddy.matcher.AccessibilityMatcher 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;
import net.bytebuddy.description.ByteCodeElement;
import net.bytebuddy.description.type.TypeDescription;
/**
* An element matcher that validates that a given byte code element is accessible to a given type.
*
* @param The type of the matched entity.
*/
@EqualsAndHashCode(callSuper = false)
public class AccessibilityMatcher 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 AccessibilityMatcher(TypeDescription typeDescription) {
this.typeDescription = typeDescription;
}
@Override
public boolean matches(T target) {
return target.isAccessibleTo(typeDescription);
}
@Override
public String toString() {
return "isAccessibleTo(" + typeDescription + ")";
}
}