Package org.hibernate.query.sqm.tree
Interface SqmCopyContext
-
- All Known Implementing Classes:
NoParamSqmCopyContext
,SimpleSqmCopyContext
public interface SqmCopyContext
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default boolean
copyFetchedFlag()
Returns whether thefetch
flag for attribute joins should be copied over.<T> T
getCopy(T original)
static SqmCopyContext
noParamCopyContext()
<T> T
registerCopy(T original, T copy)
static SqmCopyContext
simpleContext()
-
-
-
Method Detail
-
getCopy
<T> T getCopy(T original)
-
registerCopy
<T> T registerCopy(T original, T copy)
-
copyFetchedFlag
@Incubating default boolean copyFetchedFlag()
Returns whether thefetch
flag for attribute joins should be copied over.- Since:
- 6.4
-
simpleContext
static SqmCopyContext simpleContext()
-
noParamCopyContext
static SqmCopyContext noParamCopyContext()
-
-