Class ClassLoaderUtil


  • @Deprecated
    public final class ClassLoaderUtil
    extends Object
    Deprecated.
    See DCD
    ClassLoader utilities. Useful for extracting additional details from a class hierarchy beyond the basic standard Java Reflection APIs.
    • Method Detail

      • fromInternalForm

        public static String fromInternalForm​(String internalForm)
        Deprecated.
      • toInternalForm

        public static String toInternalForm​(String internalForm)
        Deprecated.
      • getClass

        public static Class<?> getClass​(String name)
        Deprecated.
      • getField

        public static Field getField​(Class<?> type,
                                     String name)
        Deprecated.
      • 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.
      • isOverridenMethod

        public static boolean isOverridenMethod​(Class<?> clazz,
                                                Method method,
                                                boolean checkThisClass)
        Deprecated.