Java javax.persistence.criteria CriteriaUpdate fields, constructors, methods, implement or subclass

Example usage for Java javax.persistence.criteria CriteriaUpdate fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.persistence.criteria CriteriaUpdate.

The text is from its open source code.

Method

Rootfrom(Class entityClass)
Create and add a query root corresponding to the entity that is the target of the update.
Rootfrom(EntityType entity)
Create and add a query root corresponding to the entity that is the target of the update.
CriteriaUpdateset(SingularAttribute attribute, X value)
Update the value of the specified attribute.
CriteriaUpdateset(SingularAttribute attribute, Expression value)
Update the value of the specified attribute.
CriteriaUpdateset(Path attribute, X value)
Update the value of the specified attribute.
CriteriaUpdateset(Path attribute, Expression value)
Update the value of the specified attribute.
CriteriaUpdateset(String attributeName, Object value)
Update the value of the specified attribute.
StringtoString()
Returns a string representation of the object.
CriteriaUpdatewhere(Expression restriction)
Modify the update query to restrict the target of the update according to the specified boolean expression.
CriteriaUpdatewhere(Predicate... restrictions)
Modify the update query to restrict the target of the update according to the conjunction of the specified restriction predicates.