org.hotrod.runtime.livesql.dialects.SetOperationRenderer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hotrod-livesql Show documentation
Show all versions of hotrod-livesql Show documentation
HotRod is an ORM for Java, Spring and SpringBoot.
package org.hotrod.runtime.livesql.dialects;
import org.hotrod.runtime.livesql.queries.select.QueryWriter;
public abstract class SetOperationRenderer {
public enum SetOperation {
UNION, //
UNION_ALL, //
INTERSECT, //
INTERSECT_ALL, //
EXCEPT, //
EXCEPT_ALL //
;
}
public abstract void render(SetOperation setOperation, QueryWriter w);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy