All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy