Uses of Class
org.hibernate.graph.GraphSemantic
-
Packages that use GraphSemantic Package Description org.hibernate This package defines the central Hibernate APIs, beginning withSessionFactory
, which represents an instance of Hibernate at runtime and is the source of new instances ofSession
andStatelessSession
, the most important APIs exposing persistence-related operations for entities.org.hibernate.engine.query.spi An SPI for dealing with parameters of native queries.org.hibernate.engine.spi This package defines some central internal SPI abstractions used throughout the implementation of Hibernate.org.hibernate.graph Implements and extends the JPA-defined entity graph API.org.hibernate.graph.spi This package defines an internal SPI abstracting over implementations of the APIs defined inorg.hibernate.graph
.org.hibernate.internal An internal package containing implementations of central Hibernate APIs, mostly defined inorg.hibernate
.org.hibernate.loader.internal org.hibernate.procedure.internal Defines the internal implementation of the stored procedure SPI.org.hibernate.query Everything related to HQL/JPQL, native SQL, and criteria queries.org.hibernate.query.hql.spi SPIs for HQL support.org.hibernate.query.internal org.hibernate.query.spi Contains a range of internal abstractions for dealing with query execution, query plans, query options, and query parameters.org.hibernate.query.sql.internal Implementation of the SPIs for native SQL query support.org.hibernate.query.sqm.internal Package for the SQM-backed Query implementation detailsorg.hibernate.sql.results.internal -
-
Uses of GraphSemantic in org.hibernate
Methods in org.hibernate with parameters of type GraphSemantic Modifier and Type Method Description <T> T
StatelessSession. get(EntityGraph<T> graph, GraphSemantic graphSemantic, Object id)
Retrieve a row, fetching associations specified by the givenEntityGraph
.<T> T
StatelessSession. get(EntityGraph<T> graph, GraphSemantic graphSemantic, Object id, LockMode lockMode)
Retrieve a row, fetching associations specified by the givenEntityGraph
, and obtaining the specified lock mode.IdentifierLoadAccess<T>
IdentifierLoadAccess. with(RootGraph<T> graph, GraphSemantic semantic)
Customize the associations fetched by specifying an entity graph, and how it should be interpreted.MultiIdentifierLoadAccess<T>
MultiIdentifierLoadAccess. with(RootGraph<T> graph, GraphSemantic semantic)
Customize the associations fetched by specifying an entity graph, and how it should be interpreted.NaturalIdLoadAccess<T>
NaturalIdLoadAccess. with(RootGraph<T> graph, GraphSemantic semantic)
Customize the associations fetched by specifying an entity graph, and how it should be interpreted.NaturalIdMultiLoadAccess<T>
NaturalIdMultiLoadAccess. with(RootGraph<T> graph, GraphSemantic semantic)
Customize the associations fetched by specifying an entity graph, and how it should be interpreted.SimpleNaturalIdLoadAccess<T>
SimpleNaturalIdLoadAccess. with(RootGraph<T> graph, GraphSemantic semantic)
Customize the associations fetched by specifying an entity graph, and how it should be interpreted. -
Uses of GraphSemantic in org.hibernate.engine.query.spi
Methods in org.hibernate.engine.query.spi that return GraphSemantic Modifier and Type Method Description @Nullable GraphSemantic
EntityGraphQueryHint. getSemantic()
Deprecated. -
Uses of GraphSemantic in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi that return GraphSemantic Modifier and Type Method Description @Nullable GraphSemantic
EffectiveEntityGraph. getSemantic()
Methods in org.hibernate.engine.spi with parameters of type GraphSemantic Modifier and Type Method Description EffectiveEntityGraph
LoadQueryInfluencers. applyEntityGraph(@Nullable RootGraphImplementor<?> rootGraph, @Nullable GraphSemantic graphSemantic)
void
EffectiveEntityGraph. applyGraph(RootGraphImplementor<?> graph, @Nullable 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. fromHintName(String hintName)
static GraphSemantic
GraphSemantic. fromJpaHintName(String hintName)
Deprecated.UsefromHintName(java.lang.String)
insteadstatic GraphSemantic
GraphSemantic. valueOf(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 List
EntityGraphs. executeList(Query query, EntityGraph graph, GraphSemantic semantic)
Convenience method for executing the query, applying the givenEntityGraph
using the specified semanticstatic <R> List<R>
EntityGraphs. executeList(TypedQuery<R> query, EntityGraph<R> graph, GraphSemantic semantic)
Form ofEntityGraphs.executeList(Query, EntityGraph, GraphSemantic)
accepting aTypedQuery
. -
Uses of GraphSemantic in org.hibernate.graph.spi
Methods in org.hibernate.graph.spi that return GraphSemantic Modifier and Type Method Description @Nullable GraphSemantic
AppliedGraph. getSemantic()
The semantic (fetch/load) under which the graph should be applied -
Uses of GraphSemantic in org.hibernate.internal
Methods in org.hibernate.internal with parameters of type GraphSemantic Modifier and Type Method Description <T> T
StatelessSessionImpl. get(EntityGraph<T> graph, GraphSemantic graphSemantic, Object id)
<T> T
StatelessSessionImpl. get(EntityGraph<T> graph, GraphSemantic graphSemantic, Object id, LockMode lockMode)
NaturalIdMultiLoadAccess<T>
NaturalIdMultiLoadAccessStandard. with(RootGraph<T> graph, GraphSemantic semantic)
-
Uses of GraphSemantic in org.hibernate.loader.internal
Methods in org.hibernate.loader.internal with parameters of type GraphSemantic Modifier and Type Method Description Object
BaseNaturalIdLoadAccessImpl. with(RootGraph<T> graph, GraphSemantic semantic)
IdentifierLoadAccess<T>
IdentifierLoadAccessImpl. with(RootGraph<T> graph, GraphSemantic semantic)
NaturalIdLoadAccess<T>
NaturalIdLoadAccessImpl. with(RootGraph<T> graph, GraphSemantic semantic)
SimpleNaturalIdLoadAccess<T>
SimpleNaturalIdLoadAccessImpl. with(RootGraph<T> graph, GraphSemantic semantic)
-
Uses of GraphSemantic in org.hibernate.procedure.internal
Methods in org.hibernate.procedure.internal with parameters of type GraphSemantic Modifier and Type Method Description Query<R>
ProcedureCallImpl. applyGraph(RootGraph graph, GraphSemantic semantic)
protected void
ProcedureCallImpl. applyGraph(RootGraphImplementor<?> entityGraph, GraphSemantic graphSemantic)
-
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 semanticQuery<R>
Query. setEntityGraph(EntityGraph<R> graph, GraphSemantic semantic)
SelectionQuery<R>
SelectionQuery. setEntityGraph(EntityGraph<R> graph, GraphSemantic semantic)
Apply anEntityGraph
to the query. -
Uses of GraphSemantic in org.hibernate.query.hql.spi
Methods in org.hibernate.query.hql.spi with parameters of type GraphSemantic Modifier and Type Method Description SqmQueryImplementor<R>
SqmQueryImplementor. applyGraph(RootGraph graph, GraphSemantic semantic)
-
Uses of GraphSemantic in org.hibernate.query.internal
Methods in org.hibernate.query.internal that return GraphSemantic Modifier and Type Method Description @Nullable GraphSemantic
QueryOptionsImpl. getSemantic()
Methods in org.hibernate.query.internal with parameters of type GraphSemantic Modifier and Type Method Description void
QueryOptionsImpl. applyGraph(RootGraphImplementor<?> rootGraph, GraphSemantic graphSemantic)
-
Uses of GraphSemantic in org.hibernate.query.spi
Methods in org.hibernate.query.spi with parameters of type GraphSemantic Modifier and Type Method Description protected void
AbstractCommonQueryContract. applyGraph(String graphString, GraphSemantic graphSemantic)
protected void
AbstractCommonQueryContract. applyGraph(RootGraphImplementor<?> entityGraph, GraphSemantic graphSemantic)
void
MutableQueryOptions. applyGraph(RootGraphImplementor<?> rootGraph, GraphSemantic graphSemantic)
QueryImplementor<R>
AbstractQuery. setEntityGraph(EntityGraph<R> graph, GraphSemantic semantic)
SelectionQuery<R>
AbstractSelectionQuery. setEntityGraph(EntityGraph<R> graph, GraphSemantic semantic)
-
Uses of GraphSemantic in org.hibernate.query.sql.internal
Methods in org.hibernate.query.sql.internal with parameters of type GraphSemantic Modifier and Type Method Description protected void
NativeQueryImpl. applyGraph(String graphString, GraphSemantic graphSemantic)
Query<R>
NativeQueryImpl. applyGraph(RootGraph graph, GraphSemantic semantic)
protected void
NativeQueryImpl. applyGraph(RootGraphImplementor<?> entityGraph, GraphSemantic graphSemantic)
-
Uses of GraphSemantic in org.hibernate.query.sqm.internal
Methods in org.hibernate.query.sqm.internal with parameters of type GraphSemantic Modifier and Type Method Description SqmQueryImplementor<R>
QuerySqmImpl. applyGraph(RootGraph graph, GraphSemantic semantic)
Query<R>
QuerySqmImpl. setEntityGraph(EntityGraph<R> graph, GraphSemantic semantic)
-
Uses of GraphSemantic in org.hibernate.sql.results.internal
Constructors in org.hibernate.sql.results.internal with parameters of type GraphSemantic Constructor Description StandardEntityGraphTraversalStateImpl(GraphSemantic graphSemantic, RootGraphImplementor<?> rootGraphImplementor, JpaMetamodel metamodel)
-