com.fasterxml.jackson.module.paramnames.ParameterExtractor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hello-world-plugin Show documentation
Show all versions of hello-world-plugin Show documentation
Kill Bill Hello World plugin
The newest version!
package com.fasterxml.jackson.module.paramnames;
import java.lang.reflect.Executable;
import java.lang.reflect.Parameter;
class ParameterExtractor {
public Parameter[] getParameters(Executable executable) {
return executable.getParameters();
}
}