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

com.jpattern.orm.query.clause.SetClause Maven / Gradle / Ivy

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

import java.util.List;

import com.jpattern.orm.query.INameSolverConsumer;
import com.jpattern.orm.query.IQueryRoot;
import com.jpattern.orm.query.IRenderableSqlObject;

/**
 * 
 * @author Francesco Cina
 *
 * 10/lug/2011
 */
public interface SetClause extends SqlClauseRoot, IRenderableSqlObject, INameSolverConsumer {

	/**
	 * Express the new value of the objects property after the execution of the update.
	 * 
	 * @param property
	 * @param value
	 * @return
	 */
	SetClause eq(String property, Object value);

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