| Package | Description | 
|---|---|
| org.hibernate.engine.internal | 
 Support for many of the internal workings of Hibernate. 
 | 
| org.hibernate.engine.spi | |
| org.hibernate.event.internal | 
 
        This package defines a default set of event listeners that
        implements the default behaviors of Hibernate. 
 | 
| org.hibernate.hql.internal.ast.util | |
| org.hibernate.loader.plan.build.internal.returns | 
 Contains the internal implementations of the building blocks that make up a metamodel-driven LoadPlan. 
 | 
| org.hibernate.loader.plan.build.internal.spaces | 
 Contains the internal implementations of query spaces in a metamodel-driven LoadPlan. 
 | 
| org.hibernate.loader.plan.spi | 
 Defines the SPI for the building blocks that make up a LoadPlan. 
 | 
| 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.walking.spi | |
| org.hibernate.type | 
 
        A Hibernate Type is a strategy for mapping a 
        Java property type to a JDBC type or types. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static void | 
Collections.processReachableCollection(PersistentCollection collection,
                          CollectionType type,
                          Object entity,
                          SessionImplementor session)
Initialize the role of the collection. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
Iterator | 
CascadingAction.getCascadableChildrenIterator(EventSource session,
                             CollectionType collectionType,
                             Object collection)
Given a collection, get an iterator of the children upon which the
 current cascading action should be visited. 
 | 
static Iterator | 
CascadingActions.getLoadedElementsIterator(SessionImplementor session,
                         CollectionType collectionType,
                         Object collection)
Iterate just the elements of the collection that are already there. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
EvictVisitor.evictCollection(Object value,
               CollectionType type)  | 
Object | 
OnLockVisitor.processCollection(Object collection,
                 CollectionType type)  | 
Object | 
OnReplicateVisitor.processCollection(Object collection,
                 CollectionType type)  | 
protected void | 
ProxyVisitor.reattachCollection(PersistentCollection collection,
                  CollectionType type)
Reattach a detached (disassociated) initialized or uninitialized
 collection wrapper, using a snapshot carried with the collection
 wrapper 
 | 
| Modifier and Type | Method and Description | 
|---|---|
String | 
SessionFactoryHelper.getAssociatedEntityName(CollectionType collectionType)
Given a collection type, determine the entity name of the elements
 contained within instance of that collection. 
 | 
AssociationType | 
SessionFactoryHelper.getElementAssociationType(CollectionType collectionType)
Essentially the same as  
SessionFactoryHelper.getElementType(org.hibernate.type.CollectionType), but requiring that the
 element type be an association type. | 
| Modifier and Type | Method and Description | 
|---|---|
CollectionType | 
CollectionAttributeFetchImpl.getFetchedType()  | 
| Modifier and Type | Method and Description | 
|---|---|
JoinDefinedByMetadata | 
JoinHelper.createCollectionJoin(QuerySpace leftHandSide,
                    String lhsPropertyName,
                    CollectionQuerySpace rightHandSide,
                    boolean rightHandSideRequired,
                    CollectionType joinedPropertyType,
                    SessionFactoryImplementor sessionFactory)  | 
| Modifier and Type | Method and Description | 
|---|---|
CollectionType | 
CollectionAttributeFetch.getFetchedType()
Get the Hibernate Type that describes the fetched attribute as a  
CollectionType. | 
| Modifier and Type | Method and Description | 
|---|---|
CollectionType | 
Collection.getCollectionType()  | 
CollectionType | 
IdentifierBag.getDefaultCollectionType()  | 
CollectionType | 
Set.getDefaultCollectionType()  | 
CollectionType | 
Bag.getDefaultCollectionType()  | 
abstract CollectionType | 
Collection.getDefaultCollectionType()  | 
CollectionType | 
Array.getDefaultCollectionType()  | 
CollectionType | 
Map.getDefaultCollectionType()  | 
CollectionType | 
List.getDefaultCollectionType()  | 
| Modifier and Type | Method and Description | 
|---|---|
CollectionType | 
AbstractCollectionPersister.getCollectionType()  | 
CollectionType | 
CollectionPersister.getCollectionType()
Get the associated Type 
 | 
| Modifier and Type | Method and Description | 
|---|---|
CollectionType | 
CollectionDefinition.getCollectionType()  | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
ArrayType
A type for persistent arrays. 
 | 
class  | 
BagType  | 
class  | 
CustomCollectionType
A custom type for mapping user-written classes that implement PersistentCollection 
 | 
class  | 
IdentifierBagType  | 
class  | 
ListType  | 
class  | 
MapType  | 
class  | 
OrderedMapType
A specialization of the map type, with (resultset-based) ordering. 
 | 
class  | 
OrderedSetType
A specialization of the set type, with (resultset-based) ordering. 
 | 
class  | 
SetType  | 
class  | 
SortedMapType  | 
class  | 
SortedSetType  | 
| Modifier and Type | Method and Description | 
|---|---|
CollectionType | 
TypeFactory.array(String role,
     String propertyRef,
     boolean embedded,
     Class elementClass)
Deprecated. 
 
Use  
TypeFactory.array(String, String, Class) instead.
 See Jira issue: HHH-7771 | 
CollectionType | 
TypeFactory.array(String role,
     String propertyRef,
     Class elementClass)  | 
CollectionType | 
TypeFactory.bag(String role,
   String propertyRef)  | 
CollectionType | 
TypeFactory.bag(String role,
   String propertyRef,
   boolean embedded)
Deprecated. 
 
Use  
TypeFactory.bag(String, String) instead.
 See Jira issue: HHH-7771 | 
CollectionType | 
TypeFactory.customCollection(String typeName,
                Properties typeParameters,
                String role,
                String propertyRef)  | 
CollectionType | 
TypeFactory.customCollection(String typeName,
                Properties typeParameters,
                String role,
                String propertyRef,
                boolean embedded)
Deprecated. 
 
Use  
TypeFactory.customCollection(String, java.util.Properties, String, String)
 instead.
 See Jira issue: HHH-7771 | 
CollectionType | 
TypeFactory.idbag(String role,
     String propertyRef)  | 
CollectionType | 
TypeFactory.idbag(String role,
     String propertyRef,
     boolean embedded)
Deprecated. 
 
Use  
TypeFactory.idbag(String, String) instead.
 See Jira issue: HHH-7771 | 
CollectionType | 
TypeFactory.list(String role,
    String propertyRef)  | 
CollectionType | 
TypeFactory.list(String role,
    String propertyRef,
    boolean embedded)
Deprecated. 
 
Use  
TypeFactory.list(String, String) instead.
 See Jira issue: HHH-7771 | 
CollectionType | 
TypeFactory.map(String role,
   String propertyRef)  | 
CollectionType | 
TypeFactory.map(String role,
   String propertyRef,
   boolean embedded)
Deprecated. 
 
Use  
TypeFactory.map(String, String) instead.
 See Jira issue: HHH-7771 | 
CollectionType | 
TypeFactory.orderedMap(String role,
          String propertyRef)  | 
CollectionType | 
TypeFactory.orderedMap(String role,
          String propertyRef,
          boolean embedded)
Deprecated. 
 
Use  
TypeFactory.orderedMap(String, String) instead.
 See Jira issue: HHH-7771 | 
CollectionType | 
TypeFactory.orderedSet(String role,
          String propertyRef)  | 
CollectionType | 
TypeFactory.orderedSet(String role,
          String propertyRef,
          boolean embedded)
Deprecated. 
 
Use  
TypeFactory.orderedSet(String, String) instead.
 See Jira issue: HHH-7771 | 
CollectionType | 
TypeFactory.set(String role,
   String propertyRef)  | 
CollectionType | 
TypeFactory.set(String role,
   String propertyRef,
   boolean embedded)
Deprecated. 
 
Use  
TypeFactory.set(String, String) instead.
 See Jira issue: HHH-7771 | 
CollectionType | 
TypeFactory.sortedMap(String role,
         String propertyRef,
         boolean embedded,
         Comparator comparator)
Deprecated. 
 
Use  
TypeFactory.sortedMap(String, String, java.util.Comparator) instead.
 See Jira issue: HHH-7771 | 
CollectionType | 
TypeFactory.sortedMap(String role,
         String propertyRef,
         Comparator comparator)  | 
CollectionType | 
TypeFactory.sortedSet(String role,
         String propertyRef,
         boolean embedded,
         Comparator comparator)
Deprecated. 
 
Use  
TypeFactory.sortedSet(String, String, java.util.Comparator) instead.
 See Jira issue: HHH-7771 | 
CollectionType | 
TypeFactory.sortedSet(String role,
         String propertyRef,
         Comparator comparator)  | 
Copyright © 2001-2015 Red Hat, Inc. All Rights Reserved.