Package | Description |
---|---|
org.hibernate.engine |
This package contains classes that are "shared" by other packages,
and implementations of some key algorithms.
|
org.hibernate.jdbc |
This package abstracts the mechanism for dispatching SQL statements
to the database, and implements interaction with JDBC.
|
org.hibernate.mapping |
This package defines the Hibernate configuration-time metamodel.
|
org.hibernate.persister.collection |
This package abstracts the persistence mechanism for collections.
|
org.hibernate.persister.entity |
This package abstracts persistence mechanisms for
entities, and defines the Hibernate runtime
metamodel.
|
Modifier and Type | Field and Description |
---|---|
static ExecuteUpdateResultCheckStyle |
ExecuteUpdateResultCheckStyle.COUNT
Perform row-count checking.
|
static ExecuteUpdateResultCheckStyle |
ExecuteUpdateResultCheckStyle.NONE
Do not perform checking.
|
static ExecuteUpdateResultCheckStyle |
ExecuteUpdateResultCheckStyle.PARAM
Essentially the same as
COUNT except that the row count actually
comes from an output parameter registered as part of a
CallableStatement . |
Modifier and Type | Method and Description |
---|---|
static ExecuteUpdateResultCheckStyle |
ExecuteUpdateResultCheckStyle.determineDefault(String customSql,
boolean callable) |
static ExecuteUpdateResultCheckStyle |
ExecuteUpdateResultCheckStyle.parse(String name) |
Modifier and Type | Method and Description |
---|---|
static Expectation |
Expectations.appropriateExpectation(ExecuteUpdateResultCheckStyle style) |
Modifier and Type | Method and Description |
---|---|
ExecuteUpdateResultCheckStyle |
Collection.getCustomSQLDeleteAllCheckStyle() |
ExecuteUpdateResultCheckStyle |
PersistentClass.getCustomSQLDeleteCheckStyle() |
ExecuteUpdateResultCheckStyle |
Join.getCustomSQLDeleteCheckStyle() |
ExecuteUpdateResultCheckStyle |
Collection.getCustomSQLDeleteCheckStyle() |
ExecuteUpdateResultCheckStyle |
PersistentClass.getCustomSQLInsertCheckStyle() |
ExecuteUpdateResultCheckStyle |
Join.getCustomSQLInsertCheckStyle() |
ExecuteUpdateResultCheckStyle |
Collection.getCustomSQLInsertCheckStyle() |
ExecuteUpdateResultCheckStyle |
PersistentClass.getCustomSQLUpdateCheckStyle() |
ExecuteUpdateResultCheckStyle |
Join.getCustomSQLUpdateCheckStyle() |
ExecuteUpdateResultCheckStyle |
Collection.getCustomSQLUpdateCheckStyle() |
Modifier and Type | Method and Description |
---|---|
void |
PersistentClass.setCustomSQLDelete(String customSQLDelete,
boolean callable,
ExecuteUpdateResultCheckStyle checkStyle) |
void |
Join.setCustomSQLDelete(String customSQLDelete,
boolean callable,
ExecuteUpdateResultCheckStyle checkStyle) |
void |
Collection.setCustomSQLDelete(String customSQLDelete,
boolean callable,
ExecuteUpdateResultCheckStyle checkStyle) |
void |
Collection.setCustomSQLDeleteAll(String customSQLDeleteAll,
boolean callable,
ExecuteUpdateResultCheckStyle checkStyle) |
void |
PersistentClass.setCustomSQLInsert(String customSQLInsert,
boolean callable,
ExecuteUpdateResultCheckStyle checkStyle) |
void |
Join.setCustomSQLInsert(String customSQLInsert,
boolean callable,
ExecuteUpdateResultCheckStyle checkStyle) |
void |
Collection.setCustomSQLInsert(String customSQLInsert,
boolean callable,
ExecuteUpdateResultCheckStyle checkStyle) |
void |
PersistentClass.setCustomSQLUpdate(String customSQLUpdate,
boolean callable,
ExecuteUpdateResultCheckStyle checkStyle) |
void |
Join.setCustomSQLUpdate(String customSQLUpdate,
boolean callable,
ExecuteUpdateResultCheckStyle checkStyle) |
void |
Collection.setCustomSQLUpdate(String customSQLUpdate,
boolean callable,
ExecuteUpdateResultCheckStyle checkStyle) |
Modifier and Type | Method and Description |
---|---|
protected ExecuteUpdateResultCheckStyle |
AbstractCollectionPersister.getDeleteAllCheckStyle() |
protected ExecuteUpdateResultCheckStyle |
AbstractCollectionPersister.getDeleteCheckStyle() |
protected ExecuteUpdateResultCheckStyle |
AbstractCollectionPersister.getInsertCheckStyle() |
protected ExecuteUpdateResultCheckStyle |
AbstractCollectionPersister.getUpdateCheckStyle() |
Modifier and Type | Field and Description |
---|---|
protected ExecuteUpdateResultCheckStyle[] |
AbstractEntityPersister.deleteResultCheckStyles |
protected ExecuteUpdateResultCheckStyle[] |
AbstractEntityPersister.insertResultCheckStyles |
protected ExecuteUpdateResultCheckStyle[] |
AbstractEntityPersister.updateResultCheckStyles |
Copyright © 2002-2015 Red Hat Middleware, LLC. All Rights Reserved