Uses of Class
xal.tools.reflect.Selector.MethodNotFoundException
Packages that use Selector.MethodNotFoundException
-
Uses of Selector.MethodNotFoundException in xal.tools.reflect
Methods in xal.tools.reflect that throw Selector.MethodNotFoundExceptionModifier 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<T> Method
Selector.methodForClass
(Class<T> targetClass) Return a Method instance that binds the selector to a target class.Selector.methodForObject
(Object target) Return a Method instance that binds the selector to a target object.