![JAR search and dependency download from the Maven repository](/logo.png)
jdbi_modules.base.QueryModifier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
An Api for modular SQL-Querys and Mapping in java
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