|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use FetchMode | |
---|---|
org.hibernate | This package defines the central Hibernate APIs. |
org.hibernate.criterion | A framework for defining restriction criteria and order criteria. |
org.hibernate.impl | This package contains implementations of the central Hibernate APIs, especially the Hibernate session. |
org.hibernate.loader | This package defines functionality for processing JDBC result sets and returning complex graphs of persistent objects. |
org.hibernate.loader.collection | This package defines collection initializers |
org.hibernate.loader.criteria | This package defines the criteria query compiler and loader |
org.hibernate.loader.entity | This package defines entity loaders |
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.type | A Hibernate Type is a strategy for mapping a Java property type to a JDBC type or types. |
Uses of FetchMode in org.hibernate |
---|
Fields in org.hibernate declared as FetchMode | |
---|---|
static FetchMode |
FetchMode.DEFAULT
Default to the setting configured in the mapping file. |
static FetchMode |
FetchMode.EAGER
Deprecated. use FetchMode.JOIN |
static FetchMode |
FetchMode.JOIN
Fetch using an outer join. |
static FetchMode |
FetchMode.LAZY
Deprecated. use FetchMode.SELECT |
static FetchMode |
FetchMode.SELECT
Fetch eagerly, using a separate select. |
Methods in org.hibernate with parameters of type FetchMode | |
---|---|
Criteria |
Criteria.setFetchMode(String associationPath,
FetchMode mode)
Specify an association fetching strategy for an association or a collection of values. |
Uses of FetchMode in org.hibernate.criterion |
---|
Methods in org.hibernate.criterion with parameters of type FetchMode | |
---|---|
DetachedCriteria |
DetachedCriteria.setFetchMode(String associationPath,
FetchMode mode)
|
Uses of FetchMode in org.hibernate.impl |
---|
Methods in org.hibernate.impl that return FetchMode | |
---|---|
FetchMode |
CriteriaImpl.getFetchMode(String path)
|
Methods in org.hibernate.impl with parameters of type FetchMode | |
---|---|
Criteria |
CriteriaImpl.setFetchMode(String associationPath,
FetchMode mode)
|
Criteria |
CriteriaImpl.Subcriteria.setFetchMode(String associationPath,
FetchMode mode)
|
Uses of FetchMode in org.hibernate.loader |
---|
Methods in org.hibernate.loader with parameters of type FetchMode | |
---|---|
protected int |
JoinWalker.getJoinType(AssociationType type,
FetchMode config,
String path,
String lhsTable,
String[] lhsColumns,
boolean nullable,
int currentDepth,
CascadeStyle cascadeStyle)
Get the join type (inner, outer, etc) or -1 if the association should not be joined. |
protected boolean |
JoinWalker.isJoinedFetchEnabled(AssociationType type,
FetchMode config,
CascadeStyle cascadeStyle)
Override on subclasses to enable or suppress joining of certain association types |
protected boolean |
AbstractEntityJoinWalker.isJoinedFetchEnabled(AssociationType type,
FetchMode config,
CascadeStyle cascadeStyle)
The superclass deliberately excludes collections |
protected boolean |
JoinWalker.isJoinedFetchEnabledInMapping(FetchMode config,
AssociationType type)
Does the mapping, and Hibernate default semantics, specify that this association should be fetched by outer joining |
Uses of FetchMode in org.hibernate.loader.collection |
---|
Methods in org.hibernate.loader.collection with parameters of type FetchMode | |
---|---|
protected int |
BasicCollectionJoinWalker.getJoinType(AssociationType type,
FetchMode config,
String path,
Set visitedAssociations,
String lhsTable,
String[] lhsColumns,
boolean nullable,
int currentDepth)
We can use an inner join for first many-to-many association |
Uses of FetchMode in org.hibernate.loader.criteria |
---|
Methods in org.hibernate.loader.criteria with parameters of type FetchMode | |
---|---|
protected int |
CriteriaJoinWalker.getJoinType(AssociationType type,
FetchMode config,
String path,
String lhsTable,
String[] lhsColumns,
boolean nullable,
int currentDepth,
CascadeStyle cascadeStyle)
|
Uses of FetchMode in org.hibernate.loader.entity |
---|
Methods in org.hibernate.loader.entity with parameters of type FetchMode | |
---|---|
protected boolean |
EntityJoinWalker.isJoinedFetchEnabled(AssociationType type,
FetchMode config,
CascadeStyle cascadeStyle)
Disable outer join fetching if this loader obtains an upgrade lock mode |
protected boolean |
CascadeEntityJoinWalker.isJoinedFetchEnabled(AssociationType type,
FetchMode config,
CascadeStyle cascadeStyle)
|
Uses of FetchMode in org.hibernate.mapping |
---|
Methods in org.hibernate.mapping that return FetchMode | |
---|---|
FetchMode |
Value.getFetchMode()
|
FetchMode |
ToOne.getFetchMode()
|
FetchMode |
SimpleValue.getFetchMode()
|
FetchMode |
OneToMany.getFetchMode()
|
FetchMode |
Fetchable.getFetchMode()
|
FetchMode |
Collection.getFetchMode()
|
Methods in org.hibernate.mapping with parameters of type FetchMode | |
---|---|
void |
ToOne.setFetchMode(FetchMode fetchMode)
|
void |
Fetchable.setFetchMode(FetchMode joinedFetch)
|
void |
Collection.setFetchMode(FetchMode fetchMode)
|
Uses of FetchMode in org.hibernate.persister.collection |
---|
Methods in org.hibernate.persister.collection that return FetchMode | |
---|---|
FetchMode |
QueryableCollection.getFetchMode()
Should we load this collection role by outerjoining? |
FetchMode |
AbstractCollectionPersister.getFetchMode()
|
Uses of FetchMode in org.hibernate.persister.entity |
---|
Methods in org.hibernate.persister.entity that return FetchMode | |
---|---|
FetchMode |
OuterJoinLoadable.getFetchMode(int i)
May this (subclass closure) property be fetched using an SQL outerjoin? |
FetchMode |
AbstractEntityPersister.getFetchMode(int i)
|
Uses of FetchMode in org.hibernate.tuple |
---|
Methods in org.hibernate.tuple that return FetchMode | |
---|---|
FetchMode |
StandardProperty.getFetchMode()
|
Constructors in org.hibernate.tuple with parameters of type FetchMode | |
---|---|
StandardProperty(String name,
String node,
Type type,
boolean lazy,
boolean insertable,
boolean updateable,
boolean insertGenerated,
boolean updateGenerated,
boolean nullable,
boolean checkable,
boolean versionable,
CascadeStyle cascadeStyle,
FetchMode fetchMode)
Constructs StandardProperty instances. |
Uses of FetchMode in org.hibernate.type |
---|
Methods in org.hibernate.type that return FetchMode | |
---|---|
FetchMode |
CompositeCustomType.getFetchMode(int i)
|
FetchMode |
ComponentType.getFetchMode(int i)
|
FetchMode |
AnyType.getFetchMode(int i)
|
FetchMode |
AbstractComponentType.getFetchMode(int i)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |