|
| static void | resetForNameCount () |
| |
| static StringBuilder | getForNameStats (StringBuilder sb) |
| |
| static final boolean | isClassAvailable (final String clazzName, final ClassLoader cl) |
| | Returns true only if the class could be loaded. More...
|
| |
| static final Class<?> | getClass (final String clazzName, final boolean initializeClazz, final ClassLoader cl) throws JogampRuntimeException |
| | Loads and returns the class or null. More...
|
| |
| static final Constructor<?> | getConstructor (final String clazzName, final Class<?>[] cstrArgTypes, final boolean initializeClazz, final ClassLoader cl) throws JogampRuntimeException |
| |
| static final Constructor<?> | getConstructor (final Class<?> clazz, Class<?> ... cstrArgTypes) throws JogampRuntimeException |
| | Returns a compatible constructor if available, otherwise throws an exception. More...
|
| |
| static final Constructor<?> | getConstructor (final String clazzName, final ClassLoader cl) throws JogampRuntimeException |
| |
| static final Object | createInstance (final Constructor<?> cstr, final Object ... cstrArgs) throws JogampRuntimeException, RuntimeException |
| |
| static final Object | createInstance (final Class<?> clazz, final Class<?>[] cstrArgTypes, final Object ... cstrArgs) throws JogampRuntimeException, RuntimeException |
| |
| static final Object | createInstance (final Class<?> clazz, final Object ... cstrArgs) throws JogampRuntimeException, RuntimeException |
| |
| static final Object | createInstance (final String clazzName, final Class<?>[] cstrArgTypes, final Object[] cstrArgs, final ClassLoader cl) throws JogampRuntimeException, RuntimeException |
| |
| static final Object | createInstance (final String clazzName, final Object[] cstrArgs, final ClassLoader cl) throws JogampRuntimeException, RuntimeException |
| |
| static final Object | createInstance (final String clazzName, final ClassLoader cl) throws JogampRuntimeException, RuntimeException |
| |
| static final boolean | instanceOf (final Object obj, final String clazzName) |
| |
| static final boolean | instanceOf (Class<?> clazz, final String clazzName) |
| |
| static final boolean | implementationOf (final Object obj, final String faceName) |
| |
| static final boolean | implementationOf (Class<?> clazz, final String faceName) |
| |
| static boolean | isAWTComponent (final Object target) |
| |
| static boolean | isAWTComponent (final Class<?> clazz) |
| |
| static final Method | getMethod (final Class<?> clazz, final String methodName, final Class<?> ... argTypes) throws JogampRuntimeException, RuntimeException |
| |
| static final Method | getMethod (final String clazzName, final String methodName, final Class<?>[] argTypes, final ClassLoader cl) throws JogampRuntimeException, RuntimeException |
| |
| static final Object | callMethod (final Object instance, final Method method, final Object ... args) throws JogampRuntimeException, RuntimeException |
| |
| static final Object | callStaticMethod (final String clazzName, final String methodName, final Class<?>[] argTypes, final Object[] args, final ClassLoader cl) throws JogampRuntimeException, RuntimeException |
| |
Definition at line 56 of file ReflectionUtil.java.