|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ClassLoader | |
---|---|
java.lang | Provides classes that are fundamental to the design of the Java programming language. |
java.lang.reflect | Provides classes and interfaces for obtaining reflective information about classes and objects. |
java.module | Provides classes for the module system. |
Uses of ClassLoader in java.lang |
---|
Methods in java.lang that return ClassLoader | |
---|---|
ClassLoader |
Class.getClassLoader()
Returns the class loader for the class. |
ClassLoader |
ClassLoader.getParent()
Returns the parent class loader for delegation. |
static ClassLoader |
ClassLoader.getSystemClassLoader()
Returns the system class loader for delegation. |
Methods in java.lang with parameters of type ClassLoader | |
---|---|
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. |
Constructors in java.lang with parameters of type ClassLoader | |
---|---|
ClassLoader(ClassLoader parent)
Creates a new class loader using the specified parent class loader for delegation. |
Uses of ClassLoader in java.lang.reflect |
---|
Methods in java.lang.reflect that return ClassLoader | |
---|---|
ClassLoader |
Superpackage.getClassLoader()
Returns the class loader for the superpackage. |
Uses of ClassLoader in java.module |
---|
Methods in java.module that return ClassLoader | |
---|---|
abstract ClassLoader |
Module.getClassLoader()
Returns the classloader associated with the module instance. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |