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

com.alibaba.bytekit.utils.AnnotationUtils Maven / Gradle / Ivy

package com.alibaba.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 - 2025 Weber Informatics LLC | Privacy Policy