Package | Description |
---|---|
org.hibernate.engine.spi | |
org.hibernate.jdbc | |
org.hibernate.mapping |
This package defines the Hibernate configuration-time metamodel.
|
org.hibernate.metamodel.binding | |
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 | Method and Description |
---|---|
static ExecuteUpdateResultCheckStyle |
ExecuteUpdateResultCheckStyle.determineDefault(String customSql,
boolean callable) |
static ExecuteUpdateResultCheckStyle |
ExecuteUpdateResultCheckStyle.fromExternalName(String name) |
static ExecuteUpdateResultCheckStyle |
ExecuteUpdateResultCheckStyle.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecuteUpdateResultCheckStyle[] |
ExecuteUpdateResultCheckStyle.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
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 |
Collection.getCustomSQLDeleteCheckStyle() |
ExecuteUpdateResultCheckStyle |
Join.getCustomSQLDeleteCheckStyle() |
ExecuteUpdateResultCheckStyle |
PersistentClass.getCustomSQLInsertCheckStyle() |
ExecuteUpdateResultCheckStyle |
Collection.getCustomSQLInsertCheckStyle() |
ExecuteUpdateResultCheckStyle |
Join.getCustomSQLInsertCheckStyle() |
ExecuteUpdateResultCheckStyle |
PersistentClass.getCustomSQLUpdateCheckStyle() |
ExecuteUpdateResultCheckStyle |
Collection.getCustomSQLUpdateCheckStyle() |
ExecuteUpdateResultCheckStyle |
Join.getCustomSQLUpdateCheckStyle() |
Modifier and Type | Method and Description |
---|---|
void |
PersistentClass.setCustomSQLDelete(String customSQLDelete,
boolean callable,
ExecuteUpdateResultCheckStyle checkStyle) |
void |
Collection.setCustomSQLDelete(String customSQLDelete,
boolean callable,
ExecuteUpdateResultCheckStyle checkStyle) |
void |
Join.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 |
Collection.setCustomSQLInsert(String customSQLInsert,
boolean callable,
ExecuteUpdateResultCheckStyle checkStyle) |
void |
Join.setCustomSQLInsert(String customSQLInsert,
boolean callable,
ExecuteUpdateResultCheckStyle checkStyle) |
void |
PersistentClass.setCustomSQLUpdate(String customSQLUpdate,
boolean callable,
ExecuteUpdateResultCheckStyle checkStyle) |
void |
Collection.setCustomSQLUpdate(String customSQLUpdate,
boolean callable,
ExecuteUpdateResultCheckStyle checkStyle) |
void |
Join.setCustomSQLUpdate(String customSQLUpdate,
boolean callable,
ExecuteUpdateResultCheckStyle checkStyle) |
Modifier and Type | Method and Description |
---|---|
ExecuteUpdateResultCheckStyle |
CustomSQL.getCheckStyle() |
Constructor and Description |
---|
CustomSQL(String sql,
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 © 2001-2015 Red Hat, Inc. All Rights Reserved.