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

jdbi_modules.base.QueryModifier Maven / Gradle / Ivy

The newest version!
package jdbi_modules.base;

/**
 * @param  the type of the value of the query modifier
 * @since 14.04.2018
 */
abstract class QueryModifier implements jdbi_modules.QueryModifier {
    private String name;
    private Type value;

    QueryModifier(final String name, final Type value) {
        this.name = name;
        this.value = value;
    }

    @Override
    public final String getName() {
        return name;
    }

    public Type getValue() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy