Reflection Java

import java.lang.annotation.Annotation;
import java.lang.reflect.Method;
public class Util{
  @SuppressWarnings("unchecked")
  public static T getAnnotationDefault(Class annotationClass,String element) throws Exception {
    Method method = annotationClass.getMethod(element,(Class[])null);
    return((T)method.getDefaultValue());
  }
}