Method: setAccessible(boolean flag) : Method « java.lang.reflect « Java by API






Method: setAccessible(boolean flag)

 


import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.lang.reflect.Method;

public class Main {
  public static void main(String[] argv) throws Exception {

    Class cls = java.lang.String.class;
    Method method = cls.getMethods()[0];
    Field field = cls.getFields()[0];
    Constructor constructor = cls.getConstructors()[0];

    field.setAccessible(true);
    constructor.setAccessible(true);
    method.setAccessible(true);

  }
}

   
  








Related examples in the same category

1.Method: getAnnotation(Class < MyAnno > annotationClass)
2.Method: getExceptionTypes()
3.Method: getModifiers()
4.Method: getName()
5.Method: getParameterTypes()
6.Method: getReturnType()
7.Method: invoke(Object obj, Object... args)
8.Method: toGenericString()
9.Method: toString()