static Collection<Method> |
ClassReflectionIndexUtil.findAllMethods(DeploymentReflectionIndex deploymentReflectionIndex,
ClassReflectionIndex classReflectionIndex,
String methodName,
int paramCount) |
Finds and returns all methods corresponding to the passed method name and method paramCount.
|
static Collection<Method> |
ClassReflectionIndexUtil.findAllMethodsByName(DeploymentReflectionIndex deploymentReflectionIndex,
ClassReflectionIndex classReflectionIndex,
String methodName) |
Finds and returns all methods corresponding to the passed method name.
|
static Method |
ClassReflectionIndexUtil.findMethod(DeploymentReflectionIndex deploymentReflectionIndex,
Class<?> clazz,
Method method) |
Finds and returns a method corresponding to the passed method, which may be declared in the super class
of the passed classReflectionIndex.
|
static Method |
ClassReflectionIndexUtil.findMethod(DeploymentReflectionIndex deploymentReflectionIndex,
Class<?> clazz,
org.jboss.invocation.proxy.MethodIdentifier methodIdentifier) |
Finds and returns a method corresponding to the passed methodIdentifier.
|
static Collection<Method> |
ClassReflectionIndexUtil.findMethods(DeploymentReflectionIndex deploymentReflectionIndex,
ClassReflectionIndex classReflectionIndex,
String methodName,
String... paramTypes) |
Finds and returns methods corresponding to the passed method name and method paramTypes.
|
static Method |
ClassReflectionIndexUtil.findRequiredMethod(DeploymentReflectionIndex deploymentReflectionIndex,
Class<?> clazz,
Method method) |
Finds and returns a method corresponding to the passed method, which may be declared in the super class
of the passed classReflectionIndex.
|
static Method |
ClassReflectionIndexUtil.findRequiredMethod(DeploymentReflectionIndex deploymentReflectionIndex,
Class<?> clazz,
org.jboss.invocation.proxy.MethodIdentifier methodIdentifier) |
Finds and returns a method corresponding to the passed methodIdentifier.
|