Package | Description |
---|---|
java.lang |
Provides classes that are fundamental to the design of the Java
programming language.
|
Modifier and Type | Method and Description |
---|---|
ClassLoader |
Class.getClassLoader()
Returns the class loader for the class.
|
ClassLoader |
Thread.getContextClassLoader()
Returns the context ClassLoader for this Thread.
|
ClassLoader |
ClassLoader.getParent()
Returns the parent class loader for delegation.
|
static ClassLoader |
ClassLoader.getSystemClassLoader()
Returns the system class loader for delegation.
|
Modifier and Type | Method and Description |
---|---|
static Class<?> |
Class.forName(String name,
boolean initialize,
ClassLoader loader)
Returns the
Class object associated with the class or
interface with the given string name, using the given class loader. |
void |
Thread.setContextClassLoader(ClassLoader cl)
Sets the context ClassLoader for this Thread.
|