Uses of Class
org.hibernate.graph.GraphSemantic
-
Packages that use GraphSemantic Package Description org.hibernate org.hibernate.engine.query.spi Defines support for query plans and stored metadata about queriesorg.hibernate.engine.spi org.hibernate.graph Hibernate's (extended) support for JPA's entity graphsorg.hibernate.graph.spi org.hibernate.query -
-
Uses of GraphSemantic in org.hibernate
Methods in org.hibernate with parameters of type GraphSemantic Modifier and Type Method Description IdentifierLoadAccess<T>
IdentifierLoadAccess. with(RootGraph<T> graph, GraphSemantic semantic)
MultiIdentifierLoadAccess<T>
MultiIdentifierLoadAccess. with(RootGraph<T> graph, GraphSemantic semantic)
-
Uses of GraphSemantic in org.hibernate.engine.query.spi
Methods in org.hibernate.engine.query.spi that return GraphSemantic Modifier and Type Method Description GraphSemantic
EntityGraphQueryHint. getGraphSemantic()
Deprecated.(5.4) UseEntityGraphQueryHint.getSemantic()
GraphSemantic
EntityGraphQueryHint. getSemantic()
Constructors in org.hibernate.engine.query.spi with parameters of type GraphSemantic Constructor Description EntityGraphQueryHint(RootGraphImplementor<?> graph, GraphSemantic semantic)
-
Uses of GraphSemantic in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi that return GraphSemantic Modifier and Type Method Description GraphSemantic
EffectiveEntityGraph. getSemantic()
Methods in org.hibernate.engine.spi with parameters of type GraphSemantic Modifier and Type Method Description void
EffectiveEntityGraph. applyGraph(RootGraphImplementor<?> graph, GraphSemantic semantic)
Apply the graph and semantic. -
Uses of GraphSemantic in org.hibernate.graph
Methods in org.hibernate.graph that return GraphSemantic Modifier and Type Method Description static GraphSemantic
GraphSemantic. fromJpaHintName(java.lang.String hintName)
static GraphSemantic
GraphSemantic. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static GraphSemantic[]
GraphSemantic. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.hibernate.graph with parameters of type GraphSemantic Modifier and Type Method Description static java.util.List
EntityGraphs. executeList(Query query, EntityGraph graph, GraphSemantic semantic)
Convenience method for executing the Query, applying the given EntityGraph using the specified semanticstatic <R> java.util.List<R>
EntityGraphs. executeList(TypedQuery<R> query, EntityGraph<R> graph, GraphSemantic semantic)
Form ofEntityGraphs.executeList(Query, EntityGraph, GraphSemantic)
accepting a TypedQuery. -
Uses of GraphSemantic in org.hibernate.graph.spi
Methods in org.hibernate.graph.spi that return GraphSemantic Modifier and Type Method Description GraphSemantic
AppliedGraph. getSemantic()
The semantic (fetch/load) under which the graph should be applied -
Uses of GraphSemantic in org.hibernate.query
Methods in org.hibernate.query with parameters of type GraphSemantic Modifier and Type Method Description Query<R>
Query. applyGraph(RootGraph graph, GraphSemantic semantic)
Apply the given graph using the given semantic
-