Uses of Class
org.hibernate.LockMode
-
Packages that use LockMode 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 ofSessionandStatelessSession, the most important APIs exposing persistence-related operations for entities.org.hibernate.boot.jaxb.hbm.spi org.hibernate.collection.spi This package defines the SPI of a framework for lazy-initializing and state-tracking collection wrappers.org.hibernate.dialect This package abstracts over the multifarious dialects of SQL understood by the databases supported by Hibernate.org.hibernate.dialect.lock Support forDialect-specific locking strategies.org.hibernate.engine.spi This package defines some central internal SPI abstractions used throughout the implementation of Hibernate.org.hibernate.event.spi Defines the event types and event listener interfaces for events produced by the statefulSession.org.hibernate.persister.entity This package abstracts persistence mechanisms for entities.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.results Support for defining result set mappings used inNativeQuery,ProcedureCall, andStoredProcedureQuery.org.hibernate.query.results.complete Support for immutable result/fetch builder graph nodes built from static sources such asSqlResultSetMappingor thehbm.xmlmapping element<resultset/>.org.hibernate.query.results.dynamic Support for mutable result/fetch builder graphs nodes built dynamically via Hibernate'sNativeQueryAPIsorg.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.spi SPIs for native SQL query support.org.hibernate.query.sqm.sql Package for the translation of SQM into SQL ASTorg.hibernate.sql This package contains helper classes for rendering SQL fragments and SQL statements.org.hibernate.sql.ast.spi Package defining support for creating and consuming a SQL AST.org.hibernate.sql.results.graph Defines domain result graphs.org.hibernate.sql.results.graph.entity -
-
Uses of LockMode in org.hibernate
Methods in org.hibernate that return LockMode Modifier and Type Method Description LockModeLockOptions. findGreatestLockMode()Currently needed for follow-on locking.static LockModeLockMode. fromExternalForm(String externalForm)static LockModeLockMode. fromJpaLockMode(LockModeType lockMode)LockModeLockOptions. getAliasSpecificLockMode(String alias)Get theLockModeexplicitly specified for the given alias viaLockOptions.setAliasSpecificLockMode(String, LockMode).LockModeSession. getCurrentLockMode(Object object)Determine the currentLockModeof the given managed instance associated with this session.LockModeLockOptions. getEffectiveLockMode(String alias)Determine theLockModeto apply to the given alias.LockModeLockOptions. getLockMode()Retrieve the overall lock mode in effect for this set of options.LockModeSession.LockRequest. getLockMode()Deprecated.Get the lock mode.static LockModeLockMode. valueOf(String name)Returns the enum constant of this type with the specified name.static LockMode[]LockMode. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.hibernate that return types with arguments of type LockMode Modifier and Type Method Description Iterator<Map.Entry<String,LockMode>>LockOptions. getAliasLockIterator()Deprecated.Set<Map.Entry<String,LockMode>>LockOptions. getAliasSpecificLocks()Methods in org.hibernate with parameters of type LockMode Modifier and Type Method Description <T> TSession. get(Class<T> entityType, Object id, LockMode lockMode)Return the persistent instance of the given entity class with the given identifier, or null if there is no such persistent instance.ObjectSession. get(String entityName, Object id, LockMode lockMode)Return the persistent instance of the given entity class with the given identifier, or null if there is no such persistent instance.<T> TStatelessSession. get(Class<T> entityClass, Object id, LockMode lockMode)Retrieve a row, obtaining the specified lock mode.ObjectStatelessSession. get(String entityName, Object id, LockMode lockMode)Retrieve a row, obtaining the specified lock mode.booleanLockMode. greaterThan(LockMode mode)Check if this lock mode is more restrictive than the given lock mode.booleanLockMode. lessThan(LockMode mode)Check if this lock mode is less restrictive than the given lock mode.<T> TSession. load(Class<T> theClass, Object id, LockMode lockMode)Deprecated.ObjectSession. load(String entityName, Object id, LockMode lockMode)Deprecated.voidSession. lock(Object object, LockMode lockMode)Obtain the specified lock level on the given managed instance associated with this session.voidSession. lock(String entityName, Object object, LockMode lockMode)Deprecated.voidSession. refresh(Object object, LockMode lockMode)Reread the state of the given managed instance from the underlying database, obtaining the givenLockMode.voidStatelessSession. refresh(Object entity, LockMode lockMode)Refresh the entity instance state from the database.voidStatelessSession. refresh(String entityName, Object entity, LockMode lockMode)Refresh the entity instance state from the database.LockOptionsLockOptions. setAliasSpecificLockMode(String alias, LockMode lockMode)Specify theLockModeto be used for the given query alias.LockOptionsLockOptions. setLockMode(LockMode lockMode)Set the overall lock mode.Session.LockRequestSession.LockRequest. setLockMode(LockMode lockMode)Deprecated.Specify theLockModeto be used.static LockModeTypeLockMode. toJpaLockMode(LockMode lockMode)Constructors in org.hibernate with parameters of type LockMode Constructor Description LockOptions(LockMode lockMode)Construct an instance with the given mode andLockOptions.WAIT_FOREVER.LockOptions(LockMode lockMode, int timeout)Construct an instance with the given mode and timeout.LockOptions(LockMode lockMode, int timeout, PessimisticLockScope scope) -
Uses of LockMode in org.hibernate.boot.jaxb.hbm.spi
Fields in org.hibernate.boot.jaxb.hbm.spi declared as LockMode Modifier and Type Field Description protected LockModeJaxbHbmNativeQueryCollectionLoadReturnType. lockModeprotected LockModeJaxbHbmNativeQueryJoinReturnType. lockModeprotected LockModeJaxbHbmNativeQueryReturnType. lockModeMethods in org.hibernate.boot.jaxb.hbm.spi that return LockMode Modifier and Type Method Description LockModeJaxbHbmNativeQueryCollectionLoadReturnType. getLockMode()Gets the value of the lockMode property.LockModeJaxbHbmNativeQueryJoinReturnType. getLockMode()Gets the value of the lockMode property.LockModeJaxbHbmNativeQueryReturnType. getLockMode()Gets the value of the lockMode property.LockModeNativeQueryNonScalarRootReturn. getLockMode()Access the LockMode associated with this returnLockModeAdapter8. unmarshal(String value)Methods in org.hibernate.boot.jaxb.hbm.spi with parameters of type LockMode Modifier and Type Method Description StringAdapter8. marshal(LockMode value)voidJaxbHbmNativeQueryCollectionLoadReturnType. setLockMode(LockMode value)Sets the value of the lockMode property.voidJaxbHbmNativeQueryJoinReturnType. setLockMode(LockMode value)Sets the value of the lockMode property.voidJaxbHbmNativeQueryReturnType. setLockMode(LockMode value)Sets the value of the lockMode property. -
Uses of LockMode in org.hibernate.collection.spi
Methods in org.hibernate.collection.spi with parameters of type LockMode Modifier and Type Method Description CollectionInitializerCollectionInitializerProducer. produceInitializer(NavigablePath navigablePath, PluralAttributeMapping attribute, FetchParentAccess parentAccess, LockMode lockMode, DomainResultAssembler<?> collectionKeyAssembler, DomainResultAssembler<?> collectionValueKeyAssembler, AssemblerCreationState creationState)Create an initializer for the given attribute relative to the given navigable path. -
Uses of LockMode in org.hibernate.dialect
Methods in org.hibernate.dialect with parameters of type LockMode Modifier and Type Method Description StringDialect. getForUpdateString(LockMode lockMode)Given aLockMode, determine the appropriatefor updatefragment to use to obtain the lock.StringDialectDelegateWrapper. getForUpdateString(LockMode lockMode)LockingStrategyDialect. getLockingStrategy(Lockable lockable, LockMode lockMode)ALockingStrategywhich is able to acquire a database-level lock with the specified level.LockingStrategyDialectDelegateWrapper. getLockingStrategy(Lockable lockable, LockMode lockMode)LockingStrategySpannerDialect. getLockingStrategy(Lockable lockable, LockMode lockMode)RowLockStrategyDialect. getLockRowIdentifier(LockMode lockMode)Obtain aRowLockStrategyfor the givenLockMode.RowLockStrategyDialectDelegateWrapper. getLockRowIdentifier(LockMode lockMode)protected booleanSQLServerSqlAstTranslator. renderNamedTableReference(NamedTableReference tableReference, LockMode lockMode)protected booleanSybaseASESqlAstTranslator. renderNamedTableReference(NamedTableReference tableReference, LockMode lockMode)protected booleanSybaseSqlAstTranslator. renderNamedTableReference(NamedTableReference tableReference, LockMode lockMode)protected booleanDB2zSqlAstTranslator. renderPrimaryTableReference(TableGroup tableGroup, LockMode lockMode)protected booleanH2SqlAstTranslator. renderPrimaryTableReference(TableGroup tableGroup, LockMode lockMode)protected booleanSpannerSqlAstTranslator. renderPrimaryTableReference(TableGroup tableGroup, LockMode lockMode)protected booleanSQLServerSqlAstTranslator. renderPrimaryTableReference(TableGroup tableGroup, LockMode lockMode) -
Uses of LockMode in org.hibernate.dialect.lock
Methods in org.hibernate.dialect.lock that return LockMode Modifier and Type Method Description protected LockModeAbstractSelectLockingStrategy. getLockMode()protected LockModeOptimisticForceIncrementLockingStrategy. getLockMode()protected LockModeOptimisticLockingStrategy. getLockMode()protected LockModePessimisticForceIncrementLockingStrategy. getLockMode()Retrieve the specific lock mode defined.protected LockModePessimisticReadUpdateLockingStrategy. getLockMode()protected LockModePessimisticWriteUpdateLockingStrategy. getLockMode()protected LockModeUpdateLockingStrategy. getLockMode()Constructors in org.hibernate.dialect.lock with parameters of type LockMode Constructor Description AbstractSelectLockingStrategy(Lockable lockable, LockMode lockMode)OptimisticForceIncrementLockingStrategy(Lockable lockable, LockMode lockMode)Construct locking strategy.OptimisticLockingStrategy(Lockable lockable, LockMode lockMode)Construct locking strategy.PessimisticForceIncrementLockingStrategy(Lockable lockable, LockMode lockMode)Construct locking strategy.PessimisticReadSelectLockingStrategy(Lockable lockable, LockMode lockMode)Construct a locking strategy based on SQL SELECT statements.PessimisticReadUpdateLockingStrategy(Lockable lockable, LockMode lockMode)Construct a locking strategy based on SQL UPDATE statements.PessimisticWriteSelectLockingStrategy(Lockable lockable, LockMode lockMode)Construct a locking strategy based on SQL SELECT statements.PessimisticWriteUpdateLockingStrategy(Lockable lockable, LockMode lockMode)Construct a locking strategy based on SQL UPDATE statements.SelectLockingStrategy(Lockable lockable, LockMode lockMode)Construct a locking strategy based on SQL SELECT statements.UpdateLockingStrategy(Lockable lockable, LockMode lockMode)Construct a locking strategy based on SQL UPDATE statements. -
Uses of LockMode in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi that return LockMode Modifier and Type Method Description LockModeSessionDelegatorBaseImpl. getCurrentLockMode(Object object)LockModeSessionLazyDelegator. getCurrentLockMode(Object object)LockModeEntityEntry. getLockMode()Methods in org.hibernate.engine.spi with parameters of type LockMode Modifier and Type Method Description EntityEntryPersistenceContext. addEntity(Object entity, Status status, Object[] loadedState, EntityKey entityKey, Object version, LockMode lockMode, boolean existsInDatabase, EntityPersister persister, boolean disableVersionIncrement)Adds an entity to the internal caches.EntityEntryPersistenceContext. addEntry(Object entity, Status status, Object[] loadedState, Object rowId, Object id, Object version, LockMode lockMode, boolean existsInDatabase, EntityPersister persister, boolean disableVersionIncrement)Generates an appropriate EntityEntry instance and adds it to the event source's internal caches.EntityEntryEntityEntryFactory. createEntityEntry(Status status, Object[] loadedState, Object rowId, Object id, Object version, LockMode lockMode, boolean existsInDatabase, EntityPersister persister, boolean disableVersionIncrement, PersistenceContext persistenceContext)CreatesEntityEntry.<T> TSessionDelegatorBaseImpl. get(Class<T> theClass, Object id, LockMode lockMode)ObjectSessionDelegatorBaseImpl. get(String entityName, Object id, LockMode lockMode)<T> TSessionLazyDelegator. get(Class<T> entityType, Object id, LockMode lockMode)ObjectSessionLazyDelegator. get(String entityName, Object id, LockMode lockMode)<T> TSessionDelegatorBaseImpl. load(Class<T> theClass, Object id, LockMode lockMode)ObjectSessionDelegatorBaseImpl. load(String entityName, Object id, LockMode lockMode)<T> TSessionLazyDelegator. load(Class<T> theClass, Object id, LockMode lockMode)Deprecated.ObjectSessionLazyDelegator. load(String entityName, Object id, LockMode lockMode)Deprecated.voidSessionDelegatorBaseImpl. lock(Object object, LockMode lockMode)voidSessionDelegatorBaseImpl. lock(String entityName, Object object, LockMode lockMode)voidSessionLazyDelegator. lock(Object object, LockMode lockMode)voidSessionLazyDelegator. lock(String entityName, Object object, LockMode lockMode)Deprecated.voidSessionDelegatorBaseImpl. refresh(Object object, LockMode lockMode)voidSessionLazyDelegator. refresh(Object object, LockMode lockMode)voidEntityEntry. setLockMode(LockMode lockMode) -
Uses of LockMode in org.hibernate.event.spi
Fields in org.hibernate.event.spi declared as LockMode Modifier and Type Field Description static LockModeResolveNaturalIdEvent. DEFAULT_LOCK_MODEMethods in org.hibernate.event.spi that return LockMode Modifier and Type Method Description LockModeLoadEvent. getLockMode()LockModeLockEvent. getLockMode()LockModeRefreshEvent. getLockMode()Constructors in org.hibernate.event.spi with parameters of type LockMode Constructor Description LoadEvent(Object entityId, String entityClassName, LockMode lockMode, EventSource source, Boolean readOnly)LockEvent(Object object, LockMode lockMode, EventSource source)LockEvent(String entityName, Object original, LockMode lockMode, EventSource source)RefreshEvent(Object object, LockMode lockMode, EventSource source) -
Uses of LockMode in org.hibernate.persister.entity
Methods in org.hibernate.persister.entity with parameters of type LockMode Modifier and Type Method Description protected LockingStrategyAbstractEntityPersister. generateLocker(LockMode lockMode)ObjectAbstractEntityPersister. load(Object id, Object optionalObject, LockMode lockMode, SharedSessionContractImplementor session)Load an instance using either theforUpdateLoaderor the outer joiningloader, depending upon the value of thelockparameterObjectEntityPersister. load(Object id, Object optionalObject, LockMode lockMode, SharedSessionContractImplementor session)Load an instance of the persistent class.default ObjectEntityPersister. load(Object id, Object optionalObject, LockMode lockMode, SharedSessionContractImplementor session, Boolean readOnly)voidAbstractEntityPersister. lock(Object id, Object version, Object object, LockMode lockMode, EventSource session)voidEntityPersister. lock(Object id, Object version, Object object, LockMode lockMode, EventSource session)Do a version check (optional operation) -
Uses of LockMode in org.hibernate.query
Methods in org.hibernate.query that return LockMode Modifier and Type Method Description LockModeNativeQuery. getHibernateLockMode()LockModeSelectionQuery. getHibernateLockMode()Get the rootLockModefor the queryLockModeNativeQuery.RootReturn. getLockMode()Methods in org.hibernate.query with parameters of type LockMode Modifier and Type Method Description NativeQuery<T>NativeQuery. addEntity(String tableAlias, Class entityClass, LockMode lockMode)Declare a "root" entity, specifying a lock mode.NativeQuery<T>NativeQuery. addEntity(String tableAlias, String entityName, LockMode lockMode)Declare a "root" entity, specifying a lock mode.NativeQuery<T>NativeQuery. addJoin(String tableAlias, String path, LockMode lockMode)Declare a join fetch result, specifying a lock mode.@Remove SelectionQuery<R>SelectionQuery. setAliasSpecificLockMode(String alias, LockMode lockMode)Deprecated.NativeQuery<T>NativeQuery. setHibernateLockMode(LockMode lockMode)SelectionQuery<R>SelectionQuery. setHibernateLockMode(LockMode lockMode)Specify the rootLockModefor the queryNativeQuery.FetchReturnNativeQuery.FetchReturn. setLockMode(LockMode lockMode)Set the lock mode for this return.NativeQuery.RootReturnNativeQuery.RootReturn. setLockMode(LockMode lockMode)Set the lock mode for this return.NativeQuery<T>NativeQuery. setLockMode(String alias, LockMode lockMode)Not applicable to native SQL queries.Query<R>Query. setLockMode(String alias, LockMode lockMode)Set theLockModeto use for particular alias defined in theFROMclause of the query.SelectionQuery<R>SelectionQuery. setLockMode(String alias, LockMode lockMode)Specify aLockModeto apply to a specific alias defined in the query -
Uses of LockMode in org.hibernate.query.hql.spi
Methods in org.hibernate.query.hql.spi with parameters of type LockMode Modifier and Type Method Description SqmQueryImplementor<R>SqmQueryImplementor. setLockMode(String alias, LockMode lockMode) -
Uses of LockMode in org.hibernate.query.results
Methods in org.hibernate.query.results that return types with arguments of type LockMode Modifier and Type Method Description Map<String,LockMode>DomainResultCreationStateImpl. getRegisteredLockModes()Methods in org.hibernate.query.results with parameters of type LockMode Modifier and Type Method Description static DynamicResultBuilderEntityCalculatedBuilders. entityCalculated(String tableAlias, String entityName, LockMode explicitLockMode, SessionFactoryImplementor sessionFactory)Creates a EntityResultBuilder that does not allow any further configuring of the mapping.voidDomainResultCreationStateImpl. registerLockMode(String identificationVariable, LockMode explicitLockMode)Constructor parameters in org.hibernate.query.results with type arguments of type LockMode Constructor Description JdbcValuesMappingImpl(List<SqlSelection> sqlSelections, List<DomainResult<?>> domainResults, int rowSize, Map<String,LockMode> registeredLockModes) -
Uses of LockMode in org.hibernate.query.results.complete
Methods in org.hibernate.query.results.complete that return LockMode Modifier and Type Method Description LockModeCompleteResultBuilderEntityStandard. getLockMode()Methods in org.hibernate.query.results.complete with parameters of type LockMode Modifier and Type Method Description NativeQuery.RootReturnCompleteResultBuilderEntityStandard. setLockMode(LockMode lockMode)Constructors in org.hibernate.query.results.complete with parameters of type LockMode Constructor Description CompleteResultBuilderEntityJpa(NavigablePath navigablePath, EntityMappingType entityDescriptor, LockMode lockMode, BasicValuedFetchBuilder discriminatorFetchBuilder, HashMap<String,FetchBuilder> explicitFetchBuilderMap)CompleteResultBuilderEntityStandard(String tableAlias, NavigablePath navigablePath, EntityMappingType entityDescriptor, LockMode lockMode, BasicValuedFetchBuilder discriminatorFetchBuilder, HashMap<String,FetchBuilder> explicitFetchBuilderMap)EntityResultImpl(NavigablePath navigablePath, EntityValuedModelPart entityValuedModelPart, String resultAlias, LockMode lockMode, Function<EntityResultImpl,BasicFetch<?>> discriminatorFetchBuilder, DomainResultCreationState creationState) -
Uses of LockMode in org.hibernate.query.results.dynamic
Methods in org.hibernate.query.results.dynamic that return LockMode Modifier and Type Method Description LockModeDynamicResultBuilderEntityCalculated. getLockMode()LockModeDynamicResultBuilderEntityStandard. getLockMode()Methods in org.hibernate.query.results.dynamic with parameters of type LockMode Modifier and Type Method Description NativeQuery.FetchReturnDynamicFetchBuilderLegacy. setLockMode(LockMode lockMode)NativeQuery.RootReturnDynamicResultBuilderEntityCalculated. setLockMode(LockMode lockMode)DynamicResultBuilderEntityStandardDynamicResultBuilderEntityStandard. setLockMode(LockMode lockMode)Constructors in org.hibernate.query.results.dynamic with parameters of type LockMode Constructor Description DynamicResultBuilderEntityCalculated(EntityMappingType entityMapping, String tableAlias, LockMode explicitLockMode, SessionFactoryImplementor sessionFactory) -
Uses of LockMode in org.hibernate.query.spi
Methods in org.hibernate.query.spi that return LockMode Modifier and Type Method Description LockModeAbstractSelectionQuery. getHibernateLockMode()Get the root LockMode for the queryMethods in org.hibernate.query.spi with parameters of type LockMode Modifier and Type Method Description protected voidAbstractCommonQueryContract. applyHibernateLockMode(LockMode value)protected booleanAbstractSelectionQuery. requiresTxn(LockMode lockMode)SelectionQuery<R>AbstractSelectionQuery. setAliasSpecificLockMode(String alias, LockMode lockMode)Deprecated.SelectionQuery<R>AbstractSelectionQuery. setHibernateLockMode(LockMode lockMode)Specify the root LockMode for the queryQueryImplementor<R>AbstractQuery. setLockMode(String alias, LockMode lockMode)SelectionQuery<R>AbstractSelectionQuery. setLockMode(String alias, LockMode lockMode) -
Uses of LockMode in org.hibernate.query.sql.spi
Methods in org.hibernate.query.sql.spi with parameters of type LockMode Modifier and Type Method Description NativeQueryImplementor<R>NativeQueryImplementor. addEntity(String tableAlias, Class entityClass, LockMode lockMode)NativeQueryImplementor<R>NativeQueryImplementor. addEntity(String tableAlias, String entityName, LockMode lockMode)NativeQueryImplementor<R>NativeQueryImplementor. addJoin(String tableAlias, String path, LockMode lockMode)NativeQueryImplementor<R>NativeQueryImplementor. setHibernateLockMode(LockMode lockMode)NativeQueryImplementor<R>NativeQueryImplementor. setLockMode(String alias, LockMode lockMode) -
Uses of LockMode in org.hibernate.query.sqm.sql
Methods in org.hibernate.query.sqm.sql with parameters of type LockMode Modifier and Type Method Description voidBaseSqmToSqlAstConverter. registerLockMode(String identificationVariable, LockMode explicitLockMode)voidFakeSqmToSqlAstConverter. registerLockMode(String identificationVariable, LockMode explicitLockMode) -
Uses of LockMode in org.hibernate.sql
Methods in org.hibernate.sql with parameters of type LockMode Modifier and Type Method Description SimpleSelectSimpleSelect. setLockMode(LockMode lockMode) -
Uses of LockMode in org.hibernate.sql.ast.spi
Methods in org.hibernate.sql.ast.spi that return LockMode Modifier and Type Method Description protected LockModeAbstractSqlAstTranslator. getEffectiveLockMode(String alias)protected LockModeAbstractSqlAstTranslator. getEffectiveLockMode(String alias, boolean isRoot)LockModeAbstractSqlAstTranslator.ForUpdateClause. getLockMode()Methods in org.hibernate.sql.ast.spi with parameters of type LockMode Modifier and Type Method Description protected intAbstractSqlAstTranslator. getEffectiveLockTimeout(LockMode lockMode)protected voidAbstractSqlAstTranslator. inlineCteTableGroup(TableGroup tableGroup, LockMode lockMode)voidSqlAstCreationState. registerLockMode(String identificationVariable, LockMode explicitLockMode)protected booleanAbstractSqlAstTranslator. renderNamedTableReference(NamedTableReference tableReference, LockMode lockMode)protected booleanAbstractSqlAstTranslator. renderPrimaryTableReference(TableGroup tableGroup, LockMode lockMode)voidAbstractSqlAstTranslator.ForUpdateClause. setLockMode(LockMode lockMode)Constructors in org.hibernate.sql.ast.spi with parameters of type LockMode Constructor Description ForUpdateClause(LockMode lockMode) -
Uses of LockMode in org.hibernate.sql.results.graph
Methods in org.hibernate.sql.results.graph that return LockMode Modifier and Type Method Description LockModeAssemblerCreationState. determineEffectiveLockMode(String identificationVariable) -
Uses of LockMode in org.hibernate.sql.results.graph.entity
Methods in org.hibernate.sql.results.graph.entity that return LockMode Modifier and Type Method Description protected LockModeAbstractEntityInitializer. getLockMode()Constructors in org.hibernate.sql.results.graph.entity with parameters of type LockMode Constructor Description AbstractEntityInitializer(EntityResultGraphNode resultDescriptor, NavigablePath navigablePath, LockMode lockMode, Fetch identifierFetch, Fetch discriminatorFetch, DomainResult<Object> rowIdResult, AssemblerCreationState creationState)
-