Class: Method getMethod(String name, Class... parameterTypes) : Class « java.lang « Java by API






Class: Method getMethod(String name, Class... parameterTypes)

      

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.reflect.Method;

@Retention(RetentionPolicy.RUNTIME)
@interface MyAnnotation {
  String stringValue();

  int intValue();
}

public class Main {
  @MyAnnotation(stringValue = "Annotation Example", intValue = 100)
  public static void myMethod() {
  }

  public static void main(String[] a) throws Exception {
    Main ob = new Main();
    Class c = ob.getClass();
    Method m = c.getMethod("myMethod");
    MyAnnotation anno = m.getAnnotation(MyAnnotation.class);
    System.out.println(anno.stringValue() + " " + anno.intValue());
  }
}

   
    
    
    
    
    
  








Related examples in the same category

1.Class: forName(String classDec)
2.Class: Annotation[] getAnnotations()
3.Class: getCanonicalName()
4.Class: getClasses()
5.Class: getComponentType()
6.Class: getConstructors()
7.Class: getConstructor(Class...)
8.Class: getDeclaringClass()
9.Class: getDeclaredConstructors()
10.Class: getDeclaredFields()
11.Class: getDeclaredMethods()
12.Class: getDeclaredMethod(String name, Class... parameterTypes)
13.Class: getEnumConstants()
14.Class: getFields()
15.Class: getGenericInterfaces()
16.Class: getGenericSuperclass()
17.Class: getInterfaces()
18.Class: getMethods()
19.Class: getModifiers()
20.Class: getName()
21.Class: getPackage()
22.Class: getProtectionDomain()
23.Class: getResource(String name) (absolute from the classpath)
24.Class: getResource(String name) (relative to the class location)
25.Class: getResourceAsStream(String name)
26.Class: getSuperclass()
27.Class: getTypeParameters()
28.Class: isArray()
29.Class: isAssignableFrom(Class cls)
30.Class: isEnum()
31.Class: isInstance(Object obj)
32.Class: isInterface()
33.Class: newInstance()