All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jpattern.orm.query.RenderableSqlQuery Maven / Gradle / Ivy

There is a newer version: 6.3.0
Show newest version
package com.jpattern.orm.query;

import java.util.List;

/**
 * 
 * @author Francesco Cina
 *
 * 23/giu/2011
 */
public interface RenderableSqlQuery  {

	/**
	 * Return the sql query generated by this IQuery Object
	 * @return
	 */
	String renderSql();

	/**
	 * Append to the string buffer the sql query generated by this IQuery Object
	 * @param StringBuilder
	 */
	void renderSql(StringBuilder stringBuilder);

	/**
	 * Append to the list all the values of the expression's elements
	 * @return
	 */
	void appendValues(List values);

}