All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.simpleflatmapper.reflect.MethodBiFunctionPair Maven / Gradle / Ivy

package org.simpleflatmapper.reflect;

import org.simpleflatmapper.util.BiFunction;

import java.lang.reflect.Method;

public class MethodBiFunctionPair {
    private final Method method;
    private final BiFunction function;

    public MethodBiFunctionPair(Method method, BiFunction function) {
        this.method = method;
        this.function = function;
    }

    public Method getMethod() {
        return method;
    }

    public BiFunction getFunction() {
        return function;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy