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

com.github.licanhua.test.framework.util.AnnotationHelper Maven / Gradle / Ivy

package com.github.licanhua.test.framework.util;

import java.lang.annotation.Annotation;
import java.lang.reflect.Method;

/**
 * @author Canhua Li
 */
public class AnnotationHelper {
    public static T getAnnotationDefault(Class annotationClass, String element) throws Exception {
        Method method = annotationClass.getMethod(element);
        return((T)method.getDefaultValue());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy