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

io.vanillabp.springboot.parameters.MethodParameter Maven / Gradle / Ivy

There is a newer version: 1.1.3
Show newest version
package io.vanillabp.springboot.parameters;

public abstract class MethodParameter {

    private final int index;
    
    private final String parameter;
    
    public MethodParameter(
            final int index,
            final String parameter) {
        
        this.index = index;
        this.parameter = parameter;
        
    }
    
    public String getParameter() {
        
        return parameter;
        
    }
    
    public int getIndex() {
        
        return index;
        
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy