- className
- Documentation for this section has not yet been entered.
- shouldInitialize
- Documentation for this section has not yet been entered.
- classLoader
- Documentation for this section has not yet been entered.
Documentation for this section has not yet been entered.
Type Reason Java.Lang.ClassNotFoundException if the requested class cannot be found. Java.Lang.LinkageError if an error occurs during linkage Java.Lang.ExceptionInInitializerError if an exception occurs during static initialization of a class.
Returns a Class object which represents the class with the given name. The name should be the name of a non-primitive class, as described in the Java.Lang.Class. Primitive types can not be found using this method; use int.class or Integer.TYPE instead.
If the class has not yet been loaded, it is loaded first, using the given class loader. If the class has not yet been initialized and shouldInitialize is true, the class will be initialized.