Package | Description |
---|---|
org.hibernate |
This package defines the central Hibernate APIs.
|
org.hibernate.boot.jaxb.hbm.internal |
JAXB details.
|
org.hibernate.boot.jaxb.hbm.spi | |
org.hibernate.cfg.annotations | |
org.hibernate.engine.spi | |
org.hibernate.envers.query | |
org.hibernate.envers.query.internal.impl | |
org.hibernate.internal |
An internal package containing mostly implementations of central Hibernate APIs.
|
org.hibernate.jpa.internal.util | |
org.hibernate.query | |
org.hibernate.query.criteria.internal.compile | |
org.hibernate.query.internal | |
org.hibernate.query.spi |
Modifier and Type | Method and Description |
---|---|
FlushMode |
Session.getHibernateFlushMode()
Get the current flush mode for this session.
|
FlushMode |
Query.getHibernateFlushMode()
Deprecated.
Obtain the FlushMode in effect for this query.
|
FlushMode |
BasicQueryContract.getHibernateFlushMode()
Deprecated.
Obtain the FlushMode in effect for this query.
|
static FlushMode |
FlushMode.interpretExternalSetting(String externalName)
Interprets an external representation of the flush mode.
|
static FlushMode |
FlushMode.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlushMode[] |
FlushMode.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
T |
SessionBuilder.flushMode(FlushMode flushMode)
Specify the initial FlushMode to use for the opened Session
|
static boolean |
FlushMode.isManualFlushMode(FlushMode mode)
Deprecated.
Just use equality check against
MANUAL . Legacy from before this was an enum |
boolean |
FlushMode.lessThan(FlushMode other)
Checks to see if
this flush mode is less than the given flush mode. |
void |
Session.setFlushMode(FlushMode flushMode)
Deprecated.
(since 5.2) use
Session.setHibernateFlushMode(FlushMode) instead |
NativeQuery<T> |
SQLQuery.setFlushMode(FlushMode flushMode)
Deprecated.
|
Query<R> |
Query.setFlushMode(FlushMode flushMode)
Deprecated.
(since 5.2) use
Query.setHibernateFlushMode(org.hibernate.FlushMode) instead |
Criteria |
Criteria.setFlushMode(FlushMode flushMode)
Override the flush mode for this particular query.
|
default BasicQueryContract |
BasicQueryContract.setFlushMode(FlushMode flushMode)
Deprecated.
(since 5.2) use
BasicQueryContract.setHibernateFlushMode(org.hibernate.FlushMode) instead |
void |
Session.setHibernateFlushMode(FlushMode flushMode)
Set the flush mode for this session.
|
NativeQuery<T> |
SQLQuery.setHibernateFlushMode(FlushMode flushMode)
Deprecated.
|
default Query<R> |
Query.setHibernateFlushMode(FlushMode flushMode)
Deprecated.
(Re)set the current FlushMode in effect for this query.
|
T |
BasicQueryContract.setHibernateFlushMode(FlushMode flushMode)
Deprecated.
(Re)set the current FlushMode in effect for this query.
|
Modifier and Type | Method and Description |
---|---|
static FlushMode |
FlushModeConverter.fromXml(String name) |
Modifier and Type | Method and Description |
---|---|
static String |
FlushModeConverter.toXml(FlushMode mode) |
Modifier and Type | Field and Description |
---|---|
protected FlushMode |
JaxbHbmNamedQueryType.flushMode |
protected FlushMode |
JaxbHbmNamedNativeQueryType.flushMode |
Modifier and Type | Method and Description |
---|---|
FlushMode |
JaxbHbmNamedQueryType.getFlushMode()
Gets the value of the flushMode property.
|
FlushMode |
JaxbHbmNamedNativeQueryType.getFlushMode()
Gets the value of the flushMode property.
|
FlushMode |
Adapter5.unmarshal(String value) |
Modifier and Type | Method and Description |
---|---|
String |
Adapter5.marshal(FlushMode value) |
void |
JaxbHbmNamedQueryType.setFlushMode(FlushMode value)
Sets the value of the flushMode property.
|
void |
JaxbHbmNamedNativeQueryType.setFlushMode(FlushMode value)
Sets the value of the flushMode property.
|
Modifier and Type | Method and Description |
---|---|
FlushMode |
QueryHintDefinition.getFlushMode(String query) |
Modifier and Type | Field and Description |
---|---|
protected FlushMode |
NamedQueryDefinitionBuilder.flushMode |
Modifier and Type | Method and Description |
---|---|
FlushMode |
NamedQueryDefinition.getFlushMode() |
FlushMode |
SharedSessionContractImplementor.getHibernateFlushMode()
Get the current flush mode for this session.
|
FlushMode |
SessionDelegatorBaseImpl.getHibernateFlushMode() |
Modifier and Type | Method and Description |
---|---|
T |
AbstractDelegatingSharedSessionBuilder.flushMode(FlushMode flushMode) |
T |
AbstractDelegatingSessionBuilder.flushMode(FlushMode flushMode) |
void |
SharedSessionContractImplementor.setFlushMode(FlushMode flushMode)
Deprecated.
(since 5.2) use
SharedSessionContractImplementor.setHibernateFlushMode(FlushMode) instead |
void |
SessionDelegatorBaseImpl.setFlushMode(FlushMode fm) |
NamedSQLQueryDefinitionBuilder |
NamedSQLQueryDefinitionBuilder.setFlushMode(FlushMode flushMode) |
NamedQueryDefinitionBuilder |
NamedQueryDefinitionBuilder.setFlushMode(FlushMode flushMode) |
void |
SharedSessionContractImplementor.setHibernateFlushMode(FlushMode flushMode)
Set the flush mode for this session.
|
void |
SessionDelegatorBaseImpl.setHibernateFlushMode(FlushMode flushMode) |
Constructor and Description |
---|
NamedQueryDefinition(String name,
String query,
boolean cacheable,
String cacheRegion,
Integer timeout,
Integer fetchSize,
FlushMode flushMode,
CacheMode cacheMode,
boolean readOnly,
String comment,
Map parameterTypes)
Deprecated.
Use
NamedQueryDefinitionBuilder instead. |
NamedQueryDefinition(String name,
String query,
boolean cacheable,
String cacheRegion,
Integer timeout,
Integer lockTimeout,
Integer fetchSize,
FlushMode flushMode,
CacheMode cacheMode,
boolean readOnly,
String comment,
Map parameterTypes)
Deprecated.
Use
NamedQueryDefinitionBuilder instead. |
NamedSQLQueryDefinition(String name,
String query,
NativeSQLQueryReturn[] queryReturns,
List<String> querySpaces,
boolean cacheable,
String cacheRegion,
Integer timeout,
Integer fetchSize,
FlushMode flushMode,
CacheMode cacheMode,
boolean readOnly,
String comment,
Map parameterTypes,
boolean callable)
Deprecated.
Use
NamedSQLQueryDefinitionBuilder instead. |
NamedSQLQueryDefinition(String name,
String query,
String resultSetRef,
List<String> querySpaces,
boolean cacheable,
String cacheRegion,
Integer timeout,
Integer fetchSize,
FlushMode flushMode,
CacheMode cacheMode,
boolean readOnly,
String comment,
Map parameterTypes,
boolean callable)
Deprecated.
Use
NamedSQLQueryDefinitionBuilder instead. |
Modifier and Type | Method and Description |
---|---|
AuditQuery |
AuditQuery.setFlushMode(FlushMode flushMode) |
AuditAssociationQuery<Q> |
AuditAssociationQuery.setFlushMode(FlushMode flushMode) |
Modifier and Type | Method and Description |
---|---|
AuditAssociationQueryImpl<Q> |
AuditAssociationQueryImpl.setFlushMode(FlushMode flushMode) |
AuditQuery |
AbstractAuditQuery.setFlushMode(FlushMode flushMode) |
Modifier and Type | Method and Description |
---|---|
FlushMode |
AbstractSharedSessionContract.getHibernateFlushMode() |
FlushMode |
SessionFactoryImpl.StatelessSessionBuilderImpl.getInitialSessionFlushMode() |
FlushMode |
SessionCreationOptions.getInitialSessionFlushMode() |
Modifier and Type | Method and Description |
---|---|
void |
StatelessSessionImpl.setFlushMode(FlushMode fm) |
Criteria |
CriteriaImpl.setFlushMode(FlushMode flushMode) |
Criteria |
CriteriaImpl.Subcriteria.setFlushMode(FlushMode flushMode) |
void |
AbstractSharedSessionContract.setFlushMode(FlushMode flushMode) |
void |
StatelessSessionImpl.setHibernateFlushMode(FlushMode flushMode) |
void |
AbstractSharedSessionContract.setHibernateFlushMode(FlushMode flushMode) |
Modifier and Type | Method and Description |
---|---|
static FlushMode |
FlushModeTypeHelper.getFlushMode(FlushModeType flushModeType) |
static FlushMode |
ConfigurationHelper.getFlushMode(Object value) |
static FlushMode |
ConfigurationHelper.getFlushMode(Object value,
FlushMode defaultFlushMode) |
static FlushMode |
FlushModeTypeHelper.interpretExternalSetting(String externalName) |
static FlushMode |
FlushModeTypeHelper.interpretFlushMode(Object value) |
Modifier and Type | Method and Description |
---|---|
static FlushMode |
ConfigurationHelper.getFlushMode(Object value,
FlushMode defaultFlushMode) |
static FlushModeType |
FlushModeTypeHelper.getFlushModeType(FlushMode flushMode) |
Modifier and Type | Method and Description |
---|---|
FlushMode |
Query.getHibernateFlushMode() |
Modifier and Type | Method and Description |
---|---|
default Query<R> |
Query.setFlushMode(FlushMode flushMode)
Deprecated.
(since 5.2) use
Query.setHibernateFlushMode(org.hibernate.FlushMode) instead |
NativeQuery<T> |
NativeQuery.setFlushMode(FlushMode flushMode) |
Query<R> |
Query.setHibernateFlushMode(FlushMode flushMode) |
NativeQuery<T> |
NativeQuery.setHibernateFlushMode(FlushMode flushMode) |
Modifier and Type | Method and Description |
---|---|
FlushMode |
CriteriaQueryTypeQueryAdapter.getHibernateFlushMode() |
Modifier and Type | Method and Description |
---|---|
QueryImplementor |
CriteriaQueryTypeQueryAdapter.setFlushMode(FlushMode flushMode) |
QueryImplementor<X> |
CriteriaQueryTypeQueryAdapter.setHibernateFlushMode(FlushMode flushMode) |
Modifier and Type | Method and Description |
---|---|
FlushMode |
AbstractProducedQuery.getHibernateFlushMode() |
Modifier and Type | Method and Description |
---|---|
protected boolean |
AbstractProducedQuery.applyFlushModeHint(FlushMode flushMode)
Apply the FlushMode hint.
|
NativeQueryImplementor<T> |
NativeQueryImpl.setFlushMode(FlushMode flushMode) |
QueryImplementor |
AbstractProducedQuery.setFlushMode(FlushMode flushMode) |
NativeQueryImplementor<T> |
NativeQueryImpl.setHibernateFlushMode(FlushMode flushMode) |
QueryImplementor |
AbstractProducedQuery.setHibernateFlushMode(FlushMode flushMode) |
Modifier and Type | Method and Description |
---|---|
FlushMode |
QueryProducerImplementor.getHibernateFlushMode() |
Modifier and Type | Method and Description |
---|---|
NativeQueryImplementor<T> |
NativeQueryImplementor.setFlushMode(FlushMode flushMode) |
NativeQueryImplementor<T> |
NativeQueryImplementor.setHibernateFlushMode(FlushMode flushMode) |
Copyright © 2019 JBoss by Red Hat. All rights reserved.