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

com.firefly.db.namedparam.ParameterHolder Maven / Gradle / Ivy

package com.firefly.db.namedparam;

/**
 * @author Pengtao Qiu
 */
public class ParameterHolder {

    private final String parameterName;
    private final int startIndex;
    private final int endIndex;

    public ParameterHolder(String parameterName, int startIndex, int endIndex) {
        this.parameterName = parameterName;
        this.startIndex = startIndex;
        this.endIndex = endIndex;
    }

    public String getParameterName() {
        return this.parameterName;
    }

    public int getStartIndex() {
        return this.startIndex;
    }

    public int getEndIndex() {
        return this.endIndex;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy