Example usage for Java javax.persistence.criteria CriteriaUpdate fields, constructors, methods, implement or subclass
The text is from its open source code.
Root | from(Class Create and add a query root corresponding to the entity that is the target of the update. |
Root | from(EntityType Create and add a query root corresponding to the entity that is the target of the update. |
CriteriaUpdate | set(SingularAttribute super T, Y> attribute, X value) Update the value of the specified attribute. |
CriteriaUpdate | set(SingularAttribute super T, Y> attribute, Expression extends Y> value) Update the value of the specified attribute. |
CriteriaUpdate | set(Path Update the value of the specified attribute. |
CriteriaUpdate | set(Path Update the value of the specified attribute. |
CriteriaUpdate | set(String attributeName, Object value) Update the value of the specified attribute. |
String | toString() Returns a string representation of the object. |
CriteriaUpdate | where(Expression Modify the update query to restrict the target of the update according to the specified boolean expression. |
CriteriaUpdate | where(Predicate... restrictions) Modify the update query to restrict the target of the update according to the conjunction of the specified restriction predicates. |