com.github.rutledgepaulv.qbuilders.nodes.AndNode 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 AndNode extends LogicalNode {
public AndNode() {}
public AndNode(LogicalNode parent) {
super(parent);
}
public AndNode(LogicalNode parent, List children) {
super(parent, children);
}
}