Uses of Class
org.hibernate.type.CollectionType
-
Packages that use CollectionType Package Description org.hibernate.collection.internal Internal implementations and support for persistent collectionsorg.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 implement the default behaviors of Hibernate session operations.org.hibernate.mapping This package defines the Hibernate configuration-time mapping model.org.hibernate.persister.collection This package abstracts persistence mechanisms for collections.org.hibernate.type A HibernateType
is a strategy for mapping a Java property type to a JDBC type or types. -
-
Uses of CollectionType in org.hibernate.collection.internal
Methods in org.hibernate.collection.internal that return CollectionType Modifier and Type Method Description CollectionType
CustomCollectionTypeSemantics. getCollectionType()
Constructors in org.hibernate.collection.internal with parameters of type CollectionType Constructor Description CustomCollectionTypeSemantics(CollectionType collectionType)
-
Uses of CollectionType in org.hibernate.engine.internal
Methods in org.hibernate.engine.internal with parameters of type CollectionType Modifier and Type Method Description static void
Collections. processReachableCollection(PersistentCollection<?> collection, CollectionType type, Object entity, SessionImplementor session)
Initialize the role of the collection. -
Uses of CollectionType in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi with parameters of type CollectionType Modifier and Type Method Description static Iterator<?>
CascadingActions. getAllElementsIterator(EventSource session, CollectionType collectionType, Object collection)
Given a collection, get an iterator of all its children, loading them from the database if necessary.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(SharedSessionContractImplementor session, CollectionType collectionType, Object collection)
Iterate just the elements of the collection that are already there. -
Uses of CollectionType in org.hibernate.event.internal
Methods in org.hibernate.event.internal with parameters of type CollectionType Modifier and Type Method Description void
EvictVisitor. evictCollection(Object value, CollectionType type)
Object
OnLockVisitor. processCollection(Object collection, CollectionType type)
Object
OnReplicateVisitor. processCollection(Object collection, CollectionType type)
protected Object
WrapVisitor. processCollection(Object collection, CollectionType collectionType)
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.mapping
Methods in org.hibernate.mapping that return CollectionType Modifier and Type Method Description static CollectionType
MappingHelper. customCollection(String typeName, Properties typeParameters, String role, String propertyRef, MetadataImplementor metadata)
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()
Methods in org.hibernate.mapping with parameters of type CollectionType Modifier and Type Method Description CollectionSemantics<?,?>
SemanticsResolver. resolve(CollectionType explicitType)
Deprecated. -
Uses of CollectionType in org.hibernate.persister.collection
Methods in org.hibernate.persister.collection that return CollectionType Modifier and Type Method Description CollectionType
AbstractCollectionPersister. getCollectionType()
CollectionType
CollectionPersister. getCollectionType()
Get the associatedType
-
Uses of CollectionType in org.hibernate.type
Subclasses of CollectionType in org.hibernate.type Modifier and Type Class Description class
ArrayType
A type for persistent arrays.class
BagType
class
CustomCollectionType
A custom type for mapping user-written classes that implementPersistentCollection
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
-