com.jpattern.orm.query.update.UpdateWhere Maven / Gradle / Ivy
package com.jpattern.orm.query.update;
import com.jpattern.orm.query.clause.Where;
/**
*
* @author ufo
*
*/
public interface UpdateWhere extends Where, UpdateQueryCommon {
/**
* Create or modify the "SET" clause of the update statement.
* @return
*/
UpdateSet set();
/**
* Return the root query object
* @return
*/
UpdateQuery query();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy