com.github.rutledgepaulv.qbuilders.delegates.virtual.Delegate 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.delegates.virtual;
import com.github.rutledgepaulv.qbuilders.builders.QBuilder;
public abstract class Delegate> extends QBuilder {
private T canonical;
protected Delegate(T canonical) {
this.canonical = canonical;
}
@Override
protected final T self() {
return canonical;
}
}