Uses of Class
org.hibernate.mapping.Collection
-
Packages that use Collection Package Description org.hibernate.boot This package contains the contracts that make up the Hibernate native bootstrapping API (building a SessionFactory).org.hibernate.boot.internal org.hibernate.boot.spi org.hibernate.cache.cfg.internal org.hibernate.cfg org.hibernate.cfg.annotations org.hibernate.collection.internal Internal implementations and support for persistent collectionsorg.hibernate.collection.spi SPI definitions for persistent collectionsorg.hibernate.envers.configuration.internal.metadata org.hibernate.mapping org.hibernate.metamodel.mapping.internal org.hibernate.persister.collection org.hibernate.persister.internal org.hibernate.persister.spi -
-
Uses of Collection in org.hibernate.boot
Methods in org.hibernate.boot that return Collection Modifier and Type Method Description Collection
Metadata. getCollectionBinding(String role)
Retrieves the collection mapping metadata for the given collection role.Methods in org.hibernate.boot that return types with arguments of type Collection Modifier and Type Method Description Collection<Collection>
Metadata. getCollectionBindings()
Retrieves the Collection metadata representation for all known collections. -
Uses of Collection in org.hibernate.boot.internal
Methods in org.hibernate.boot.internal that return Collection Modifier and Type Method Description Collection
InFlightMetadataCollectorImpl. getCollectionBinding(String role)
Collection
MetadataImpl. getCollectionBinding(String role)
Methods in org.hibernate.boot.internal that return types with arguments of type Collection Modifier and Type Method Description Map<String,Collection>
MetadataImpl. getCollectionBindingMap()
Collection<Collection>
InFlightMetadataCollectorImpl. getCollectionBindings()
Collection<Collection>
MetadataImpl. getCollectionBindings()
Methods in org.hibernate.boot.internal with parameters of type Collection Modifier and Type Method Description void
InFlightMetadataCollectorImpl. addCollectionBinding(Collection collection)
-
Uses of Collection in org.hibernate.boot.spi
Methods in org.hibernate.boot.spi that return Collection Modifier and Type Method Description Collection
AbstractDelegatingMetadata. getCollectionBinding(String role)
Methods in org.hibernate.boot.spi that return types with arguments of type Collection Modifier and Type Method Description Collection<Collection>
AbstractDelegatingMetadata. getCollectionBindings()
Methods in org.hibernate.boot.spi with parameters of type Collection Modifier and Type Method Description void
InFlightMetadataCollector. addCollectionBinding(Collection collection)
Add collection mapping metadata to this repository. -
Uses of Collection in org.hibernate.cache.cfg.internal
Methods in org.hibernate.cache.cfg.internal with parameters of type Collection Modifier and Type Method Description DomainDataRegionConfigImpl.Builder
DomainDataRegionConfigImpl.Builder. addCollectionConfig(Collection collectionDescriptor, AccessType accessType)
Constructors in org.hibernate.cache.cfg.internal with parameters of type Collection Constructor Description CollectionDataCachingConfigImpl(Collection collectionDescriptor, AccessType accessType)
-
Uses of Collection in org.hibernate.cfg
Methods in org.hibernate.cfg that return Collection Modifier and Type Method Description Collection
CollectionPropertyHolder. getCollectionBinding()
Methods in org.hibernate.cfg with parameters of type Collection Modifier and Type Method Description static CollectionPropertyHolder
PropertyHolderBuilder. buildPropertyHolder(Collection collection, String path, org.hibernate.annotations.common.reflection.XClass clazzToProcess, org.hibernate.annotations.common.reflection.XProperty property, PropertyHolder parentPropertyHolder, MetadataBuildingContext context)
build a property holder on top of a collectionConstructors in org.hibernate.cfg with parameters of type Collection Constructor Description CollectionPropertyHolder(Collection collection, String path, org.hibernate.annotations.common.reflection.XClass clazzToProcess, org.hibernate.annotations.common.reflection.XProperty property, PropertyHolder parentPropertyHolder, MetadataBuildingContext context)
CollectionSecondPass(MetadataBuildingContext buildingContext, Collection collection)
-
Uses of Collection in org.hibernate.cfg.annotations
Fields in org.hibernate.cfg.annotations declared as Collection Modifier and Type Field Description protected Collection
CollectionBinder. collection
Methods in org.hibernate.cfg.annotations that return Collection Modifier and Type Method Description protected Collection
ArrayBinder. createCollection(PersistentClass owner)
protected Collection
BagBinder. createCollection(PersistentClass owner)
protected abstract Collection
CollectionBinder. createCollection(PersistentClass persistentClass)
protected Collection
IdBagBinder. createCollection(PersistentClass owner)
protected Collection
ListBinder. createCollection(PersistentClass owner)
protected Collection
MapBinder. createCollection(PersistentClass owner)
protected Collection
PrimitiveArrayBinder. createCollection(PersistentClass owner)
protected Collection
SetBinder. createCollection(PersistentClass persistentClass)
Collection
CollectionBinder. getCollection()
Methods in org.hibernate.cfg.annotations with parameters of type Collection Modifier and Type Method Description protected void
CollectionBinder. bindOneToManySecondPass(Collection collection, Map<String,PersistentClass> persistentClasses, AnnotatedJoinColumn[] fkJoinColumns, org.hibernate.annotations.common.reflection.XClass collectionType, boolean cascadeDeleteEnabled, NotFoundAction notFoundAction, MetadataBuildingContext buildingContext, Map<org.hibernate.annotations.common.reflection.XClass,InheritanceState> inheritanceStatePerClass)
protected Value
MapBinder. createFormulatedValue(Value value, Collection collection, String targetPropertyName, PersistentClass associatedClass, PersistentClass targetPropertyPersistentClass, MetadataBuildingContext buildingContext)
-
Uses of Collection in org.hibernate.collection.internal
Methods in org.hibernate.collection.internal with parameters of type Collection Modifier and Type Method Description CollectionSemantics
StandardCollectionSemanticsResolver. resolveRepresentation(Collection bootDescriptor)
-
Uses of Collection in org.hibernate.collection.spi
Methods in org.hibernate.collection.spi with parameters of type Collection Modifier and Type Method Description <CE,E>
CollectionSemantics<CE,E>CollectionSemanticsResolver. resolveRepresentation(Collection bootDescriptor)
-
Uses of Collection in org.hibernate.envers.configuration.internal.metadata
Methods in org.hibernate.envers.configuration.internal.metadata that return Collection Modifier and Type Method Description Collection
CollectionMetadataContext. getCollection()
Methods in org.hibernate.envers.configuration.internal.metadata with parameters of type Collection Modifier and Type Method Description protected String
AbstractCollectionMetadataGenerator. getOrderBy(Collection collection)
protected String
AbstractCollectionMetadataGenerator. getOrderByCollectionRole(Collection collection, String orderBy)
static boolean
CollectionMappedByResolver. isMappedByKey(Collection collection, String mappedBy)
static String
CollectionMappedByResolver. resolveMappedBy(Collection collection, PropertyAuditingData propertyAuditingData)
-
Uses of Collection in org.hibernate.mapping
Subclasses of Collection in org.hibernate.mapping Modifier and Type Class Description class
Array
An array mapping has a primary key consisting of the key columns + index column.class
Bag
A bag permits duplicates, so it has no primary keyclass
IdentifierBag
AnIdentifierBag
has a primary key consisting of just the identifier columnclass
IdentifierCollection
A collection with a synthetic "identifier" columnclass
IndexedCollection
Indexed collections include Lists, Maps, arrays and primitive arrays.class
List
A list mapping has a primary key consisting of the key columns + index column.class
Map
A map has a primary key consisting of the key columns + index columns.class
PrimitiveArray
A primitive array has a primary key consisting of the key columns + index column.class
Set
A set with no nullable element columns.Methods in org.hibernate.mapping with parameters of type Collection Modifier and Type Method Description boolean
Collection. isSame(Collection other)
boolean
IdentifierCollection. isSame(Collection other)
boolean
IndexedCollection. isSame(Collection other)
Constructors in org.hibernate.mapping with parameters of type Collection Constructor Description Collection(Collection original)
Component(MetadataBuildingContext metadata, Collection collection)
-
Uses of Collection in org.hibernate.metamodel.mapping.internal
Methods in org.hibernate.metamodel.mapping.internal with parameters of type Collection Modifier and Type Method Description void
EntityCollectionPart. finishInitialization(CollectionPersister collectionDescriptor, Collection bootValueMapping, String fkTargetModelPartName, MappingModelCreationProcess creationProcess)
void
PluralAttributeMappingImpl. finishInitialization(Property bootProperty, Collection bootDescriptor, MappingModelCreationProcess creationProcess)
Constructors in org.hibernate.metamodel.mapping.internal with parameters of type Collection Constructor Description PluralAttributeMappingImpl(String attributeName, Collection bootDescriptor, PropertyAccess propertyAccess, AttributeMetadataAccess attributeMetadataAccess, CollectionMappingType<?> collectionMappingType, int stateArrayPosition, CollectionPart elementDescriptor, CollectionPart indexDescriptor, CollectionIdentifierDescriptor identifierDescriptor, FetchTiming fetchTiming, FetchStyle fetchStyle, CascadeStyle cascadeStyle, ManagedMappingType declaringType, CollectionPersister collectionDescriptor)
-
Uses of Collection in org.hibernate.persister.collection
-
Uses of Collection in org.hibernate.persister.internal
Methods in org.hibernate.persister.internal with parameters of type Collection Modifier and Type Method Description CollectionPersister
PersisterFactoryImpl. createCollectionPersister(Collection collectionBinding, CollectionDataAccess cacheAccessStrategy, RuntimeModelCreationContext creationContext)
CollectionPersister
PersisterFactoryImpl. createCollectionPersister(Collection collectionBinding, CollectionDataAccess cacheAccessStrategy, PersisterCreationContext creationContext)
Class<? extends CollectionPersister>
StandardPersisterClassResolver. getCollectionPersisterClass(Collection metadata)
-
Uses of Collection in org.hibernate.persister.spi
Methods in org.hibernate.persister.spi with parameters of type Collection Modifier and Type Method Description default CollectionPersister
PersisterFactory. createCollectionPersister(Collection collectionBinding, CollectionDataAccess cacheAccessStrategy, RuntimeModelCreationContext creationContext)
Create a collection persister instance.CollectionPersister
PersisterFactory. createCollectionPersister(Collection collectionBinding, CollectionDataAccess cacheAccessStrategy, PersisterCreationContext creationContext)
Class<? extends CollectionPersister>
PersisterClassResolver. getCollectionPersisterClass(Collection metadata)
Returns the collection persister class for a given collection role or null if the collection persister class should be the default.
-