com.github.datalking.common.ParameterNameDiscoverer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of play-mvc Show documentation
Show all versions of play-mvc Show documentation
simple mvc framework based on java servlet.
The newest version!
package com.github.datalking.common;
import java.lang.reflect.Constructor;
import java.lang.reflect.Method;
/**
* 获取普通方法或构造方法的参数名称 接口
*
* @author yaoo on 4/19/18
*/
public interface ParameterNameDiscoverer {
// 获取普通方法参数名
String[] getParameterNames(Method method);
// 获取构造方法参数名
String[] getParameterNames(Constructor> ctor);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy