Package org.hibernate.engine.query.spi
Class EntityGraphQueryHint
- java.lang.Object
-
- org.hibernate.engine.query.spi.EntityGraphQueryHint
-
- All Implemented Interfaces:
AppliedGraph
@Deprecated(since="6.0") public class EntityGraphQueryHint extends Object implements AppliedGraph
Deprecated.useAppliedGraph
insteadEncapsulates a JPA EntityGraph provided through a JPQL query hint. Converts the fetches into a list of AST FromElements. The logic is kept here as much as possible in order to make it easy to remove this in the future, once our AST is improved and this "hack" is no longer needed.
-
-
Constructor Summary
Constructors Constructor Description EntityGraphQueryHint(AppliedGraph delegate)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description RootGraphImplementor<?>
getGraph()
Deprecated.The applied graphGraphSemantic
getSemantic()
Deprecated.The semantic (fetch/load) under which the graph should be applied
-
-
-
Constructor Detail
-
EntityGraphQueryHint
public EntityGraphQueryHint(AppliedGraph delegate)
Deprecated.
-
-
Method Detail
-
getSemantic
public GraphSemantic getSemantic()
Deprecated.Description copied from interface:AppliedGraph
The semantic (fetch/load) under which the graph should be applied- Specified by:
getSemantic
in interfaceAppliedGraph
-
getGraph
public RootGraphImplementor<?> getGraph()
Deprecated.Description copied from interface:AppliedGraph
The applied graph- Specified by:
getGraph
in interfaceAppliedGraph
-
-