Uses of Interface
org.hibernate.query.criteria.JpaCriteriaUpdate
-
Packages that use JpaCriteriaUpdate Package Description org.hibernate.query.criteria The JPA-standard criteria query API defines all the operations needed express any query written in standard JPQL.org.hibernate.query.criteria.spi SPI for extendingHibernateCriteriaBuilder
with additional functionality by registering aService
.org.hibernate.query.sqm.tree.update Nodes representingupdate
statements in the SQM tree. -
-
Uses of JpaCriteriaUpdate in org.hibernate.query.criteria
Methods in org.hibernate.query.criteria that return JpaCriteriaUpdate Modifier and Type Method Description <T> JpaCriteriaUpdate<T>
HibernateCriteriaBuilder. createCriteriaUpdate(Class<T> targetEntity)
<Y> JpaCriteriaUpdate<T>
JpaCriteriaUpdate. set(Path<Y> attribute, Expression<? extends Y> value)
<Y,X extends Y>
JpaCriteriaUpdate<T>JpaCriteriaUpdate. set(Path<Y> attribute, X value)
<Y> JpaCriteriaUpdate<T>
JpaCriteriaUpdate. set(SingularAttribute<? super T,Y> attribute, Expression<? extends Y> value)
<Y,X extends Y>
JpaCriteriaUpdate<T>JpaCriteriaUpdate. set(SingularAttribute<? super T,Y> attribute, X value)
JpaCriteriaUpdate<T>
JpaCriteriaUpdate. set(String attributeName, Object value)
JpaCriteriaUpdate<T>
JpaCriteriaUpdate. versioned()
JpaCriteriaUpdate<T>
JpaCriteriaUpdate. versioned(boolean versioned)
JpaCriteriaUpdate<T>
JpaCriteriaUpdate. where(Expression<Boolean> restriction)
JpaCriteriaUpdate<T>
JpaCriteriaUpdate. where(Predicate... restrictions)
-
Uses of JpaCriteriaUpdate in org.hibernate.query.criteria.spi
Methods in org.hibernate.query.criteria.spi that return JpaCriteriaUpdate Modifier and Type Method Description <T> JpaCriteriaUpdate<T>
HibernateCriteriaBuilderDelegate. createCriteriaUpdate(Class<T> targetEntity)
-
Uses of JpaCriteriaUpdate in org.hibernate.query.sqm.tree.update
Classes in org.hibernate.query.sqm.tree.update that implement JpaCriteriaUpdate Modifier and Type Class Description class
SqmUpdateStatement<T>
-