Package com.querydsl.core.dml
Interface StoreClause<C extends StoreClause<C>>
- Type Parameters:
C- concrete subtype
- All Superinterfaces:
DMLClause<C>
- All Known Subinterfaces:
InsertClause<C>,UpdateClause<C>
Parent interface for
InsertClause and UpdateClause- Author:
- tiwe
-
Method Details
-
set
Add a value binding- Type Parameters:
T-- Parameters:
path- path to be updatedvalue- value to set- Returns:
- the current object
-
set
Add an expression binding- Type Parameters:
T-- Parameters:
path- path to be updatedexpression- binding- Returns:
- the current object
-
setNull
Bind the given path to null- Parameters:
path- path to be updated- Returns:
- the current object
-
isEmpty
boolean isEmpty()Returns true, if no bindings have been set, otherwise false.- Returns:
- true, if empty, false, if not
-