org.hotrod.runtime.livesql.expressions.Rendereable 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.expressions;
import org.hotrod.runtime.livesql.queries.select.AbstractSelectObject.AliasGenerator;
import org.hotrod.runtime.livesql.queries.select.AbstractSelectObject.TableReferences;
import org.hotrod.runtime.livesql.queries.select.QueryWriter;
public interface Rendereable {
void validateTableReferences(TableReferences tableReferences, AliasGenerator ag);
// void designateAliases(AliasGenerator ag);
void renderTo(QueryWriter w);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy