java.lang
Class Class
java.lang.Object
java.lang.Class
- All Implemented Interfaces:
- Serializable
public final class Class
- extends Object
- implements Serializable
- See Also:
- Serialized Form
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
desiredAssertionStatus
public boolean desiredAssertionStatus()
forName
public static Class forName(String var0)
throws ClassNotFoundException
- Throws:
ClassNotFoundException
forName
public static Class forName(String var0,
boolean var1,
ClassLoader var2)
throws ClassNotFoundException
- Throws:
ClassNotFoundException
getClassLoader
public ClassLoader getClassLoader()
getClasses
public Class[] getClasses()
getComponentType
public Class getComponentType()
getConstructor
public Constructor getConstructor(Class[] var0)
throws NoSuchMethodException
- Throws:
NoSuchMethodException
getConstructors
public Constructor[] getConstructors()
getDeclaredClasses
public Class[] getDeclaredClasses()
getDeclaredConstructor
public Constructor getDeclaredConstructor(Class[] var0)
throws NoSuchMethodException
- Throws:
NoSuchMethodException
getDeclaredConstructors
public Constructor[] getDeclaredConstructors()
getDeclaredField
public Field getDeclaredField(String var0)
throws NoSuchFieldException
- Throws:
NoSuchFieldException
getDeclaredFields
public Field[] getDeclaredFields()
getDeclaredMethod
public Method getDeclaredMethod(String var0,
Class[] var1)
throws NoSuchMethodException
- Throws:
NoSuchMethodException
getDeclaredMethods
public Method[] getDeclaredMethods()
getDeclaringClass
public Class getDeclaringClass()
getField
public Field getField(String var0)
throws NoSuchFieldException
- Throws:
NoSuchFieldException
getFields
public Field[] getFields()
getInterfaces
public Class[] getInterfaces()
getMethod
public Method getMethod(String var0,
Class[] var1)
throws NoSuchMethodException
- Throws:
NoSuchMethodException
getMethods
public Method[] getMethods()
getModifiers
public int getModifiers()
getName
public String getName()
getPackage
public Package getPackage()
getProtectionDomain
public ProtectionDomain getProtectionDomain()
getResource
public URL getResource(String var0)
getResourceAsStream
public InputStream getResourceAsStream(String var0)
getSigners
public Object[] getSigners()
getSuperclass
public Class getSuperclass()
isArray
public boolean isArray()
isAssignableFrom
public boolean isAssignableFrom(Class var0)
isInstance
public boolean isInstance(Object var0)
isInterface
public boolean isInterface()
isPrimitive
public boolean isPrimitive()
newInstance
public Object newInstance()
throws IllegalAccessException,
InstantiationException
- Throws:
IllegalAccessException
InstantiationException