Package | Description |
---|---|
javax.persistence | |
org.hibernate.ejb | |
org.hibernate.ejb.util |
Modifier and Type | Method and Description |
---|---|
LockModeType |
Query.getLockMode()
Get the current lock mode for the query.
|
LockModeType |
EntityManager.getLockMode(Object entity)
Get the current lock mode for the entity instance.
|
static LockModeType |
LockModeType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LockModeType[] |
LockModeType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
<T> T |
EntityManager.find(Class<T> entityClass,
Object primaryKey,
LockModeType lockMode)
Find by primary key and lock.
|
<T> T |
EntityManager.find(Class<T> entityClass,
Object primaryKey,
LockModeType lockMode,
Map<String,Object> properties)
Find by primary key and lock, using the specified properties.
|
void |
EntityManager.lock(Object entity,
LockModeType lockMode)
Lock an entity instance that is contained in the persistence
context with the specified lock mode type.
|
void |
EntityManager.lock(Object entity,
LockModeType lockMode,
Map<String,Object> properties)
Lock an entity instance that is contained in the persistence
context with the specified lock mode type and with specified
properties.
|
void |
EntityManager.refresh(Object entity,
LockModeType lockMode)
Refresh the state of the instance from the database,
overwriting changes made to the entity, if any, and
lock it with respect to given lock mode type.
|
void |
EntityManager.refresh(Object entity,
LockModeType lockMode,
Map<String,Object> properties)
Refresh the state of the instance from the database,
overwriting changes made to the entity, if any, and
lock it with respect to given lock mode type and with
specified properties.
|
TypedQuery<X> |
TypedQuery.setLockMode(LockModeType lockMode)
Set the lock mode type to be used for the query execution.
|
Query |
Query.setLockMode(LockModeType lockMode)
Set the lock mode type to be used for the query execution.
|
Modifier and Type | Method and Description |
---|---|
LockModeType |
QueryImpl.getLockMode() |
abstract LockModeType |
AbstractQueryImpl.getLockMode() |
LockModeType |
AbstractEntityManagerImpl.getLockMode(Object entity) |
Modifier and Type | Method and Description |
---|---|
<A> A |
AbstractEntityManagerImpl.find(Class<A> entityClass,
Object primaryKey,
LockModeType lockModeType) |
<A> A |
AbstractEntityManagerImpl.find(Class<A> entityClass,
Object primaryKey,
LockModeType lockModeType,
Map<String,Object> properties) |
LockOptions |
HibernateEntityManagerImplementor.getLockRequest(LockModeType lockModeType,
Map<String,Object> properties)
Convert from JPA 2
LockModeType & properties into LockOptions |
LockOptions |
AbstractEntityManagerImpl.getLockRequest(LockModeType lockModeType,
Map<String,Object> properties) |
void |
AbstractEntityManagerImpl.lock(Object entity,
LockModeType lockMode) |
void |
AbstractEntityManagerImpl.lock(Object entity,
LockModeType lockModeType,
Map<String,Object> properties) |
void |
AbstractEntityManagerImpl.refresh(Object entity,
LockModeType lockModeType) |
void |
AbstractEntityManagerImpl.refresh(Object entity,
LockModeType lockModeType,
Map<String,Object> properties) |
TypedQuery<X> |
QueryImpl.setLockMode(LockModeType lockModeType) |
abstract TypedQuery<X> |
AbstractQueryImpl.setLockMode(LockModeType lockModeType) |
Modifier and Type | Method and Description |
---|---|
static LockModeType |
LockModeTypeHelper.getLockModeType(LockMode lockMode) |
Modifier and Type | Method and Description |
---|---|
static LockMode |
LockModeTypeHelper.getLockMode(LockModeType lockMode) |
Copyright © 2012 JBoss by Red Hat. All Rights Reserved.