Package | Description |
---|---|
org.hibernate |
This package defines the central Hibernate APIs.
|
org.hibernate.cfg |
This package defines APIs for configuring Hibernate, and classes
for building the Hibernate configuration-time metamodel.
|
org.hibernate.id |
This package contains internal implementation classes for the
main API interfaces.
|
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.
|
org.hibernate.tuple |
This package defines a runtime metamodel for entities at
the object level and abstracts the differences between
the various entity modes.
|
org.hibernate.tuple.component | |
org.hibernate.type |
A Hibernate Type is a strategy for mapping a
Java property type to a JDBC type or types.
|
Modifier and Type | Field and Description |
---|---|
static FetchMode |
FetchMode.EAGER
Deprecated.
use FetchMode.JOIN
|
static FetchMode |
FetchMode.LAZY
Deprecated.
use FetchMode.SELECT
|
Modifier and Type | Method and Description |
---|---|
static FetchMode |
FetchMode.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FetchMode[] |
FetchMode.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
static FetchMode |
AnnotationBinder.getFetchMode(FetchType fetch) |
Modifier and Type | Method and Description |
---|---|
FetchMode |
ExportableColumn.ValueImpl.getFetchMode() |
Modifier and Type | Method and Description |
---|---|
FetchMode |
ToOne.getFetchMode() |
FetchMode |
SimpleValue.getFetchMode() |
FetchMode |
Collection.getFetchMode() |
FetchMode |
OneToMany.getFetchMode() |
FetchMode |
Fetchable.getFetchMode() |
FetchMode |
Value.getFetchMode() |
Modifier and Type | Method and Description |
---|---|
void |
ToOne.setFetchMode(FetchMode fetchMode) |
void |
Collection.setFetchMode(FetchMode fetchMode) |
void |
Fetchable.setFetchMode(FetchMode joinedFetch) |
Modifier and Type | Method and Description |
---|---|
FetchMode |
AbstractCollectionPersister.getFetchMode() |
FetchMode |
QueryableCollection.getFetchMode()
Should we load this collection role by outerjoining?
|
Modifier and Type | Method and Description |
---|---|
FetchMode |
AbstractEntityPersister.getFetchMode(int i) |
FetchMode |
OuterJoinLoadable.getFetchMode(int i)
May this (subclass closure) property be fetched using an SQL outerjoin?
|
Modifier and Type | Method and Description |
---|---|
FetchMode |
BaselineAttributeInformation.getFetchMode() |
FetchMode |
AbstractNonIdentifierAttribute.getFetchMode() |
FetchMode |
NonIdentifierAttribute.getFetchMode() |
Modifier and Type | Method and Description |
---|---|
BaselineAttributeInformation.Builder |
BaselineAttributeInformation.Builder.setFetchMode(FetchMode fetchMode) |
Constructor and Description |
---|
BaselineAttributeInformation(boolean lazy,
boolean insertable,
boolean updateable,
ValueGeneration valueGenerationStrategy,
boolean nullable,
boolean dirtyCheckable,
boolean versionable,
CascadeStyle cascadeStyle,
FetchMode fetchMode) |
StandardProperty(String name,
Type type,
boolean lazy,
boolean insertable,
boolean updateable,
ValueGeneration valueGenerationStrategy,
boolean nullable,
boolean checkable,
boolean versionable,
CascadeStyle cascadeStyle,
FetchMode fetchMode)
Deprecated.
Constructs NonIdentifierProperty instances.
|
Modifier and Type | Method and Description |
---|---|
protected FetchStyle |
CompositeBasedAssociationAttribute.determineFetchStyleByMetadata(FetchMode fetchMode,
AssociationType type) |
Modifier and Type | Method and Description |
---|---|
FetchMode |
AnyType.getFetchMode(int i) |
FetchMode |
ComponentType.getFetchMode(int i) |
FetchMode |
CompositeType.getFetchMode(int index)
Retrieve the fetch mode of the indicated component property.
|
Copyright © 2001-2021 Red Hat, Inc. All Rights Reserved.