com.taobao.arthas.bytekit.utils.AnnotationUtils Maven / Gradle / Ivy
The newest version!
package com.taobao.arthas.bytekit.utils;
import java.lang.annotation.Annotation;
import java.lang.reflect.Method;
public class AnnotationUtils {
public static A findAnnotation(Method method, Class annotationType) {
return method.getAnnotation(annotationType);
}
}