net.hamnaberg.json.codec.reflection.MethodParam Maven / Gradle / Ivy
package net.hamnaberg.json.codec.reflection;
import javaslang.control.Option;
import java.lang.reflect.Method;
class MethodParam implements Param {
public final String name;
private final Method method;
public MethodParam(String name, Method method) {
this.name = name;
this.method = method;
}
@Override
public Option