Uses of Enum Class
org.hibernate.dialect.RowLockStrategy
Packages that use RowLockStrategy
Package
Description
This package abstracts over the multifarious dialects of SQL
understood by the databases supported by Hibernate.
-
Uses of RowLockStrategy in org.hibernate.dialect
Subclasses with type arguments of type RowLockStrategy in org.hibernate.dialectModifier and TypeClassDescriptionenumThe strategy for rendering which row to lock with theFOR UPDATE OFclause.Methods in org.hibernate.dialect that return RowLockStrategyModifier and TypeMethodDescriptionDialect.getLockRowIdentifier(LockMode lockMode) Obtain aRowLockStrategyfor the givenLockMode.Dialect.getReadRowLockStrategy()Deprecated.Use LockingSupport.Metadata.getReadRowLockStrategy(), via Dialect.getLockingSupport(), instead.Dialect.getWriteRowLockStrategy()Deprecated.Use LockingSupport.Metadata.getWriteRowLockStrategy(), via Dialect.getLockingSupport(), instead.static RowLockStrategyReturns the enum constant of this class with the specified name.static RowLockStrategy[]RowLockStrategy.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.hibernate.dialect with parameters of type RowLockStrategyModifier and TypeMethodDescriptionprotected LockingClauseStrategyDialect.buildLockingClauseStrategy(org.hibernate.sql.ast.internal.PessimisticLockKind lockKind, RowLockStrategy rowLockStrategy, LockOptions lockOptions, Set<NavigablePath> rootPathsForLocking) -
Uses of RowLockStrategy in org.hibernate.dialect.lock.spi
Methods in org.hibernate.dialect.lock.spi that return RowLockStrategyModifier and TypeMethodDescriptiondefault RowLockStrategyLockingSupport.Metadata.getReadRowLockStrategy()The strategy for indicating which rows to lock as part of afor share ofstyle clause.default RowLockStrategyLockingSupport.Metadata.getWriteRowLockStrategy()The strategy for indicating which rows to lock as part of afor update ofstyle clause.