com.github.rutledgepaulv.qbuilders.nodes.Visitable 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 com.github.rutledgepaulv.qbuilders.visitors.ContextualNodeVisitor;
public interface Visitable {
default T visit(ContextualNodeVisitor visitor) {
return visit(visitor, null);
}
T visit(ContextualNodeVisitor visitor, S context);
}