|
Oracle® Application Server XML Java API Reference 10g Release 3 (10.1.3) B28238-01 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object
org.apache.soap.util.MethodUtils
This file is a collection of reflection utilities for dealing with methods and constructors.
Constructor Summary | |
MethodUtils() |
Method Summary | |
static java.lang.reflect.Constructor |
getConstructor(java.lang.Class targetClass, java.lang.Class[] argTypes) Class.getConstructor() finds only the entry point (if any) _exactly_ matching the specified argument types. |
static java.lang.reflect.Method |
getMethod(java.lang.Class target, java.lang.String methodName, java.lang.Class[] argTypes, boolean isStaticReference) |
static java.lang.reflect.Method |
getMethod(java.lang.Object target, java.lang.String methodName, java.lang.Class[] argTypes) Class.getMethod() finds only the entry point (if any) _exactly_ matching the specified argument types. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public MethodUtils()
Method Detail |
public static java.lang.reflect.Method getMethod(java.lang.Object target, java.lang.String methodName, java.lang.Class[] argTypes) throws java.lang.SecurityException, java.lang.NoSuchMethodException
target
- object on which call is to be mademethodName
- name of method I'm lookin' forargTypes
- array of argument types of methodjava.lang.SecurityException
- if security violationjava.lang.NoSuchMethodException
- if no such methodpublic static java.lang.reflect.Method getMethod(java.lang.Class target, java.lang.String methodName, java.lang.Class[] argTypes, boolean isStaticReference) throws java.lang.SecurityException, java.lang.NoSuchMethodException
java.lang.SecurityException
java.lang.NoSuchMethodException
public static java.lang.reflect.Constructor getConstructor(java.lang.Class targetClass, java.lang.Class[] argTypes) throws java.lang.SecurityException, java.lang.NoSuchMethodException
java.lang.NoSuchMethodException
- if constructor not found.java.lang.SecurityException
|
Oracle® Application Server XML Java API Reference 10g Release 3 (10.1.3) B28238-01 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |