
com.github.rutledgepaulv.qbuilders.nodes.OrNode 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.nodes;
import java.util.List;
public final class OrNode extends LogicalNode {
public OrNode() {}
public OrNode(LogicalNode parent) {
super(parent);
}
public OrNode(LogicalNode parent, List children) {
super(parent, children);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy