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
Methods in org.hibernate.dialect that return RowLockStrategyModifier and TypeMethodDescriptionDialect.getLockRowIdentifier
(LockMode lockMode) Obtain aRowLockStrategy
for 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 RowLockStrategy
Returns 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 LockingClauseStrategy
Dialect.buildLockingClauseStrategy
(org.hibernate.sql.ast.internal.PessimisticLockKind lockKind, RowLockStrategy rowLockStrategy, LockOptions lockOptions) -
Uses of RowLockStrategy in org.hibernate.dialect.lock.spi
Methods in org.hibernate.dialect.lock.spi that return RowLockStrategyModifier and TypeMethodDescriptiondefault RowLockStrategy
LockingSupport.Metadata.getReadRowLockStrategy()
The strategy for indicating which rows to lock as part of afor share of
style clause.default RowLockStrategy
LockingSupport.Metadata.getWriteRowLockStrategy()
The strategy for indicating which rows to lock as part of afor update of
style clause.