C - concrete subtypepublic interface StoreClause<C extends StoreClause<C>> extends DMLClause<C>
InsertClause and UpdateClause| Modifier and Type | Method and Description | 
|---|---|
| boolean | isEmpty()Returns true, if no bindings have been set, otherwise false. | 
| <T> C | set(Path<T> path,
   Expression<? extends T> expression)Add an expression binding | 
| <T> C | set(Path<T> path,
   T value)Add a value binding | 
| <T> C | setNull(Path<T> path)Bind the given path to null | 
<T> C set(Path<T> path, @Nullable T value)
T - path - path to be updatedvalue - value to set<T> C set(Path<T> path, Expression<? extends T> expression)
T - path - expression - boolean isEmpty()
Copyright © 2007–2015 Querydsl. All rights reserved.