public interface ClassHelper
| Modifier and Type | Method and Description |
|---|---|
default <T> java.lang.Class<T> |
forName(java.lang.String className)
Returns the
Class object associated with the class or interface with the given string
name. |
default <T> java.lang.Class<T> forName(java.lang.String className)
throws java.lang.Exception
Class object associated with the class or interface with the given string
name.T - the type of the classclassName - the full qualified name of the classjava.lang.Exception - if the class is not foundClass.forName(String)