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

com.fasterxml.jackson.module.paramnames.ParameterExtractor Maven / Gradle / Ivy

Go to download

Add-on module for Jackson (http://jackson.codehaus.org) to support introspection of method/constructor parameter names, without having to add explicit property name annotation.

There is a newer version: 2.18.2
Show newest version
package com.fasterxml.jackson.module.paramnames;

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

class ParameterExtractor implements java.io.Serializable {
    private static final long serialVersionUID = 1L;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy