Package net.sourceforge.pmd.dcd
Class ClassLoaderUtil
- java.lang.Object
-
- net.sourceforge.pmd.dcd.ClassLoaderUtil
-
@Deprecated public final class ClassLoaderUtil extends Object
Deprecated.SeeDCD
ClassLoader 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 String
fromInternalForm(String internalForm)
Deprecated.static Class<?>
getClass(String name)
Deprecated.static Constructor<?>
getConstructor(Class<?> type, String name, Class<?>... parameterTypes)
Deprecated.static Field
getField(Class<?> type, String name)
Deprecated.static Method
getMethod(Class<?> type, String name, Class<?>... parameterTypes)
Deprecated.static String
getMethodSignature(String name, Class<?>... parameterTypes)
Deprecated.static Class<?>[]
getParameterTypes(String... parameterTypeNames)
Deprecated.static boolean
isOverridenMethod(Class<?> clazz, Method method, boolean checkThisClass)
Deprecated.static String
toInternalForm(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.
-
-