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