Search notes:

Java class java.lang.Class

java.lang.Class has no public constructor - instances of java.lang.Class are created by the Java Virtual Machine by calling ClassLoader.defineClass(…).
Some interesting methods of java.lang.Class include
getFields(), getField(String name)
getMethods(), getMethod(String name, Class<?>… returns an array of, or one java.lang.reflect.Method

Index