Java Reflection Method Parameter getMethod(Class clazz, String name, Class... parameterTypes)

Here you can find the source of getMethod(Class clazz, String name, Class... parameterTypes)

Description

get Method

License

Apache License

Declaration

public static final Method getMethod(Class<?> clazz, String name,
        Class<?>... parameterTypes) 

Method Source Code

//package com.java2s;
/*/*w  ww. j  a  v a 2s  .  co m*/
 * Copyright Bruce Liang (ldcsaa@gmail.com)
 *
 * Version   : JessMA 3.5.1
 * Author   : Bruce Liang
 * Website   : http://www.jessma.org
 * Project   : http://www.oschina.net/p/portal-basic
 * Blog      : http://www.cnblogs.com/ldcsaa
 * WeiBo   : http://weibo.com/u/1402935851
 * QQ Group   : 75375912
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.lang.reflect.Method;

public class Main {

    public static final Method getMethod(Class<?> clazz, String name,
            Class<?>... parameterTypes) {
        Method m = null;

        try {
            m = clazz.getMethod(name, parameterTypes);
        } catch (NoSuchMethodException e) {
        }

        return m;
    }
}

Related

  1. getMethod(Class clazz, String functionName, Class[] parameterTypes)
  2. getMethod(Class clazz, String method, Class... parameterTypes)
  3. getMethod(Class clazz, String methodName, Class... parameterTypes)
  4. getMethod(Class clazz, String methodName, Class... parameterTypes)
  5. getMethod(Class clazz, String methodName, Class... parameterTypes)
  6. getMethod(Class clazz, String name, Class... parameterTypes)
  7. getMethod(Class clazz, String name, Class[] parameterTypes)
  8. getMethod(Class cls, String name, Class... parameterTypes)
  9. getMethod(Class clz, String methodName, Class... parameterTypes)