Class SqmAssignment<T>
- java.lang.Object
-
- org.hibernate.query.sqm.tree.update.SqmAssignment<T>
-
public class SqmAssignment<T> extends Object
-
-
Constructor Summary
Constructors Constructor Description SqmAssignment(SqmPath<T> targetPath, SqmExpression<? extends T> value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SqmAssignment<T>
copy(SqmCopyContext context)
SqmPath<T>
getTargetPath()
The attribute/path to be updatedSqmExpression<? extends T>
getValue()
The new value
-
-
-
Constructor Detail
-
SqmAssignment
public SqmAssignment(SqmPath<T> targetPath, SqmExpression<? extends T> value)
-
-
Method Detail
-
copy
public SqmAssignment<T> copy(SqmCopyContext context)
-
getValue
public SqmExpression<? extends T> getValue()
The new value
-
-