Package net.sourceforge.pmd.dcd
Class ClassLoaderUtil
- java.lang.Object
-
- net.sourceforge.pmd.dcd.ClassLoaderUtil
-
@Deprecated public final class ClassLoaderUtil extends Object
Deprecated.SeeDCDClassLoader utilities. Useful for extracting additional details from a class hierarchy beyond the basic standard Java Reflection APIs.
-
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static StringfromInternalForm(String internalForm)Deprecated.static Class<?>getClass(String name)Deprecated.static Constructor<?>getConstructor(Class<?> type, String name, Class<?>... parameterTypes)Deprecated.static FieldgetField(Class<?> type, String name)Deprecated.static MethodgetMethod(Class<?> type, String name, Class<?>... parameterTypes)Deprecated.static StringgetMethodSignature(String name, Class<?>... parameterTypes)Deprecated.static Class<?>[]getParameterTypes(String... parameterTypeNames)Deprecated.static booleanisOverridenMethod(Class<?> clazz, Method method, boolean checkThisClass)Deprecated.static StringtoInternalForm(String internalForm)Deprecated.
-
-
-
Field Detail
-
CLINIT
public static final String CLINIT
Deprecated.- See Also:
- Constant Field Values
-
INIT
public static final String INIT
Deprecated.- See Also:
- Constant Field Values
-
-
Method Detail
-
getMethod
public static Method getMethod(Class<?> type, String name, Class<?>... parameterTypes)
Deprecated.
-
getConstructor
public static Constructor<?> getConstructor(Class<?> type, String name, Class<?>... parameterTypes)
Deprecated.
-
getMethodSignature
public static String getMethodSignature(String name, Class<?>... parameterTypes)
Deprecated.
-
getParameterTypes
public static Class<?>[] getParameterTypes(String... parameterTypeNames)
Deprecated.
-
-