com.jpattern.orm.query.clause.SetClause Maven / Gradle / Ivy
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
© 2015 - 2024 Weber Informatics LLC | Privacy Policy