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 booleancopyFetchedFlag()Returns whether thefetchflag for attribute joins should be copied over.<T> TgetCopy(T original)static SqmCopyContextnoParamCopyContext()<T> TregisterCopy(T original, T copy)static SqmCopyContextsimpleContext()
-
-
-
Method Detail
-
getCopy
<T> T getCopy(T original)
-
registerCopy
<T> T registerCopy(T original, T copy)
-
copyFetchedFlag
@Incubating default boolean copyFetchedFlag()
Returns whether thefetchflag for attribute joins should be copied over.- Since:
- 6.4
-
simpleContext
static SqmCopyContext simpleContext()
-
noParamCopyContext
static SqmCopyContext noParamCopyContext()
-
-