Uses of Class
xal.tools.reflect.Selector.AccessException
Packages that use Selector.AccessException
-
Uses of Selector.AccessException in xal.tools.reflect
Methods in xal.tools.reflect that throw Selector.AccessExceptionModifier and TypeMethodDescriptionInvoke a no argument method on the targetInvoke a single argument method on the target.Invoke a multi-argument method on the target.static Object
Selector.invokeMethod
(String methodName, Class<?>[] argumentTypes, Object target, Object[] arguments) Invoke a multi-argument method on the target.static Object
Selector.invokeMethod
(String methodName, Class<?> argumentType, Object target, Object argument) Invoke a single argument method on the target.static Object
Selector.invokeMethod
(String methodName, Object target) Invoke a no argument method on the target.<T> Object
Selector.invokeStatic
(Class<T> targetClass) Invoke the appropriate static method on the specified class<T> Object
Selector.invokeStatic
(Class<T> targetClass, Object argument) Invoke the appropriate static method on the specified class<T> Object
Selector.invokeStatic
(Class<T> targetClass, Object[] arguments) Invoke the appropriate static method on the specified classstatic <T> Object
Selector.invokeStaticMethod
(String methodName, Class<?>[] argumentTypes, Class<T> targetClass, Object[] arguments) Invoke the static method with the specified arguments on the specified target classstatic <T> Object
Selector.invokeStaticMethod
(String methodName, Class<?> argumentType, Class<T> targetClass, Object argument) Invoke the static method with the specified arguments on the specified target classstatic <T> Object
Selector.invokeStaticMethod
(String methodName, Class<T> targetClass) Invoke the static method with the specified arguments on the specified target class