Uses of Class
org.hibernate.type.CollectionType

Packages that use CollectionType
org.hibernate.engine   
org.hibernate.event.def   
org.hibernate.hql.ast.util   
org.hibernate.mapping   
org.hibernate.persister.collection   
org.hibernate.type   
 

Uses of CollectionType in org.hibernate.engine
 

Methods in org.hibernate.engine with parameters of type CollectionType
abstract  Iterator CascadingAction.getCascadableChildrenIterator(EventSource session, CollectionType collectionType, Object collection)
          Should this action be cascaded to the given (possibly uninitialized) collection?
static Iterator CascadingAction.getLoadedElementsIterator(SessionImplementor session, CollectionType collectionType, Object collection)
          Iterate just the elements of the collection that are already there.
static void Collections.processReachableCollection(PersistentCollection collection, CollectionType type, Object entity, SessionImplementor session)
          Initialize the role of the collection.
 

Uses of CollectionType in org.hibernate.event.def
 

Methods in org.hibernate.event.def with parameters of type CollectionType
 void EvictVisitor.evictCollection(Object value, 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
 

Uses of CollectionType in org.hibernate.hql.ast.util
 

Methods in org.hibernate.hql.ast.util with parameters of type CollectionType
 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.
 

Uses of CollectionType in org.hibernate.mapping
 

Methods in org.hibernate.mapping that return CollectionType
 CollectionType Collection.getCollectionType()
           
 CollectionType Array.getDefaultCollectionType()
           
 CollectionType Bag.getDefaultCollectionType()
           
abstract  CollectionType Collection.getDefaultCollectionType()
           
 CollectionType IdentifierBag.getDefaultCollectionType()
           
 CollectionType List.getDefaultCollectionType()
           
 CollectionType Map.getDefaultCollectionType()
           
 CollectionType Set.getDefaultCollectionType()
           
 

Uses of CollectionType in org.hibernate.persister.collection
 

Methods in org.hibernate.persister.collection that return CollectionType
 CollectionType AbstractCollectionPersister.getCollectionType()
           
 CollectionType CollectionPersister.getCollectionType()
          Get the associated Type
 

Uses of CollectionType in org.hibernate.type
 

Subclasses of CollectionType in org.hibernate.type
 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
           
 class OrderedSetType
           
 class SetType
           
 class SortedMapType
           
 class SortedSetType
           
 

Methods in org.hibernate.type that return CollectionType
static CollectionType TypeFactory.array(String role, String propertyRef, boolean embedded, Class elementClass)
           
static CollectionType TypeFactory.bag(String role, String propertyRef, boolean embedded)
           
static CollectionType TypeFactory.customCollection(String typeName, String role, String propertyRef, boolean embedded)
           
static CollectionType TypeFactory.idbag(String role, String propertyRef, boolean embedded)
           
static CollectionType TypeFactory.list(String role, String propertyRef, boolean embedded)
           
static CollectionType TypeFactory.map(String role, String propertyRef, boolean embedded)
           
static CollectionType TypeFactory.orderedMap(String role, String propertyRef, boolean embedded)
           
static CollectionType TypeFactory.orderedSet(String role, String propertyRef, boolean embedded)
           
static CollectionType TypeFactory.set(String role, String propertyRef, boolean embedded)
           
static CollectionType TypeFactory.sortedMap(String role, String propertyRef, boolean embedded, Comparator comparator)
           
static CollectionType TypeFactory.sortedSet(String role, String propertyRef, boolean embedded, Comparator comparator)