com.litongjava.tio.boot.utils.ParameterNameUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tio-boot Show documentation
Show all versions of tio-boot Show documentation
Java High Performance Web Development Framework
package com.litongjava.tio.boot.utils;
import java.lang.reflect.Method;
import com.litongjava.tio.boot.paranamer.BytecodeReadingParanamer;
import com.litongjava.tio.boot.paranamer.Paranamer;
public class ParameterNameUtil {
private static final Paranamer paranamer;
static {
paranamer = new BytecodeReadingParanamer();
}
public static String[] getParameterNames(Method method) {
return paranamer.lookupParameterNames(method, false);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy