
com.github.rutledgepaulv.qbuilders.builders.GeneralQueryBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of q-builders Show documentation
Show all versions of q-builders Show documentation
A type-safe and database agnostic query building library.
package com.github.rutledgepaulv.qbuilders.builders;
import com.github.rutledgepaulv.qbuilders.conditions.Condition;
import com.github.rutledgepaulv.qbuilders.nodes.ComparisonNode;
public class GeneralQueryBuilder extends QBuilder {
public Condition passThrough(ComparisonNode node) {
return condition(node.getField(), node.getOperator(), node.getValues());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy