Serializable
public final class Class extends Object implements Serializable
public static Class forName(String var0) throws ClassNotFoundException
ClassNotFoundException
public static Class forName(String var0, boolean var1, ClassLoader var2) throws ClassNotFoundException
ClassNotFoundException
public Class[] getClasses()
public ClassLoader getClassLoader()
public Class getComponentType()
public Constructor getConstructor(Class[] var0) throws NoSuchMethodException, SecurityException
public Constructor[] getConstructors() throws SecurityException
SecurityException
public Class[] getDeclaredClasses() throws SecurityException
SecurityException
public Constructor getDeclaredConstructor(Class[] var0) throws NoSuchMethodException, SecurityException
public Constructor[] getDeclaredConstructors() throws SecurityException
SecurityException
public Field getDeclaredField(String var0) throws NoSuchFieldException, SecurityException
public Field[] getDeclaredFields() throws SecurityException
SecurityException
public Method getDeclaredMethod(String var0, Class[] var1) throws NoSuchMethodException, SecurityException
public Method[] getDeclaredMethods() throws SecurityException
SecurityException
public Class getDeclaringClass()
public Field getField(String var0) throws NoSuchFieldException, SecurityException
public Field[] getFields() throws SecurityException
SecurityException
public Class[] getInterfaces()
public Method getMethod(String var0, Class[] var1) throws NoSuchMethodException, SecurityException
public Method[] getMethods() throws SecurityException
SecurityException
public int getModifiers()
public String getName()
public ProtectionDomain getProtectionDomain()
public InputStream getResourceAsStream(String var0)
public Object[] getSigners()
public Class getSuperclass()
public boolean isArray()
public boolean isAssignableFrom(Class var0)
public boolean isInstance(Object var0)
public boolean isInterface()
public boolean isPrimitive()
public Object newInstance() throws IllegalAccessException, InstantiationException
public Package getPackage()