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

com.facebook.presto.jdbc.internal.jackson.module.paramnames.ParameterExtractor Maven / Gradle / Ivy

package com.facebook.presto.jdbc.internal.jackson.module.paramnames;

import java.lang.reflect.Executable;
import java.lang.reflect.Parameter;

class ParameterExtractor {

    public Parameter[] getParameters(Executable executable) {
        return executable.getParameters();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy