Uses of Enum Class
org.hibernate.dialect.lock.PessimisticLockStyle
Packages that use PessimisticLockStyle
Package
Description
This package abstracts over the multifarious dialects of SQL
understood by the databases supported by Hibernate.
Support for
Dialect
-specific locking strategies.-
Uses of PessimisticLockStyle in org.hibernate.dialect
Methods in org.hibernate.dialect that return PessimisticLockStyleModifier and TypeMethodDescriptionDialect.getPessimisticLockStyle()
Deprecated.Use LockingSupport.Metadata.getPessimisticLockStyle() instead. -
Uses of PessimisticLockStyle in org.hibernate.dialect.lock
Methods in org.hibernate.dialect.lock that return PessimisticLockStyleModifier and TypeMethodDescriptionstatic PessimisticLockStyle
Returns the enum constant of this class with the specified name.static PessimisticLockStyle[]
PessimisticLockStyle.values()
Returns an array containing the constants of this enum class, in the order they are declared. -
Uses of PessimisticLockStyle in org.hibernate.dialect.lock.internal
Methods in org.hibernate.dialect.lock.internal that return PessimisticLockStyleModifier and TypeMethodDescriptionLockingSupportParameterized.getPessimisticLockStyle()
LockingSupportSimple.getPessimisticLockStyle()
NoLockingSupport.getPessimisticLockStyle()
Constructors in org.hibernate.dialect.lock.internal with parameters of type PessimisticLockStyleModifierConstructorDescriptionLockingSupportParameterized
(PessimisticLockStyle pessimisticLockStyle, RowLockStrategy rowLockStrategy, boolean supportsWait, boolean supportsNoWait, boolean supportsSkipLocked, OuterJoinLockingType outerJoinLockingType) LockingSupportParameterized
(PessimisticLockStyle pessimisticLockStyle, RowLockStrategy rowLockStrategy, LockTimeoutType waitType, LockTimeoutType noWaitType, LockTimeoutType skipLockedType, OuterJoinLockingType outerJoinLockingType) LockingSupportSimple
(PessimisticLockStyle lockStyle, LockTimeoutType lockTimeoutType, OuterJoinLockingType joinLockingType, ConnectionLockTimeoutStrategy connectionStrategy) LockingSupportSimple
(PessimisticLockStyle lockStyle, RowLockStrategy rowLockStrategy, LockTimeoutType lockTimeoutType, OuterJoinLockingType joinLockingType, ConnectionLockTimeoutStrategy connectionStrategy) TransactSQLLockingSupport
(PessimisticLockStyle pessimisticLockStyle, LockTimeoutType wait, LockTimeoutType noWait, LockTimeoutType skipLocked, RowLockStrategy rowLockStrategy, OuterJoinLockingType outerJoinLockingType, ConnectionLockTimeoutStrategy connectionLockTimeoutStrategy) -
Uses of PessimisticLockStyle in org.hibernate.dialect.lock.spi
Methods in org.hibernate.dialect.lock.spi that return PessimisticLockStyleModifier and TypeMethodDescriptiondefault PessimisticLockStyle
LockingSupport.Metadata.getPessimisticLockStyle()
The PessimisticLockStyle supported by this Dialect.