Uses of Class
org.hibernate.mapping.Collection
-
Packages that use Collection Package Description org.hibernate.boot This package contains the interfaces that make up the bootstrap API for Hibernate.org.hibernate.boot.internal org.hibernate.boot.model.internal org.hibernate.boot.spi A range of SPIs allowing integration with—and customization of—the process of building metadata.org.hibernate.cache.cfg.internal Implementation of the second-level cache configuration SPI.org.hibernate.collection.internal Internal implementations and support for persistent collections.org.hibernate.collection.spi This package defines the SPI of a framework for lazy-initializing and state-tracking collection wrappers.org.hibernate.envers.configuration.internal.metadata org.hibernate.mapping This package defines the Hibernate configuration-time mapping model.org.hibernate.metamodel.mapping.internal org.hibernate.persister.collection This package abstracts persistence mechanisms for collections.org.hibernate.persister.internal Built-in implementation of the SPI for integrating entity and collection persisters.org.hibernate.persister.spi An SPI for integrating custom entity and collection persisters. -
-
Uses of Collection in org.hibernate.boot
Methods in org.hibernate.boot that return Collection Modifier and Type Method Description CollectionMetadata. 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 CollectionInFlightMetadataCollectorImpl. getCollectionBinding(String role)CollectionMetadataImpl. 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 voidInFlightMetadataCollectorImpl. addCollectionBinding(Collection collection) -
Uses of Collection in org.hibernate.boot.model.internal
Fields in org.hibernate.boot.model.internal declared as Collection Modifier and Type Field Description protected CollectionCollectionBinder. collectionMethods in org.hibernate.boot.model.internal that return Collection Modifier and Type Method Description protected CollectionArrayBinder. createCollection(PersistentClass owner)protected CollectionBagBinder. createCollection(PersistentClass owner)protected abstract CollectionCollectionBinder. createCollection(PersistentClass persistentClass)protected CollectionIdBagBinder. createCollection(PersistentClass owner)protected CollectionListBinder. createCollection(PersistentClass owner)protected CollectionMapBinder. createCollection(PersistentClass owner)protected CollectionPrimitiveArrayBinder. createCollection(PersistentClass owner)protected CollectionSetBinder. createCollection(PersistentClass persistentClass)CollectionCollectionBinder. getCollection()CollectionCollectionPropertyHolder. getCollectionBinding()Methods in org.hibernate.boot.model.internal with parameters of type Collection Modifier and Type Method Description static CollectionPropertyHolderPropertyHolderBuilder. 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.boot.model.internal 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(Collection collection) -
Uses of Collection in org.hibernate.boot.spi
Methods in org.hibernate.boot.spi that return Collection Modifier and Type Method Description CollectionAbstractDelegatingMetadata. 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 voidInFlightMetadataCollector. 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.BuilderDomainDataRegionConfigImpl.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.collection.internal
Methods in org.hibernate.collection.internal with parameters of type Collection Modifier and Type Method Description CollectionSemanticsStandardCollectionSemanticsResolver. 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 CollectionCollectionMetadataContext. getCollection()Methods in org.hibernate.envers.configuration.internal.metadata with parameters of type Collection Modifier and Type Method Description protected StringAbstractCollectionMetadataGenerator. getOrderBy(Collection collection)protected StringAbstractCollectionMetadataGenerator. getOrderByCollectionRole(Collection collection, String orderBy)static booleanCollectionMappedByResolver. isMappedByKey(Collection collection, String mappedBy)static StringCollectionMappedByResolver. resolveMappedBy(Collection collection, PropertyAuditingData propertyAuditingData) -
Uses of Collection in org.hibernate.mapping
Subclasses of Collection in org.hibernate.mapping Modifier and Type Class Description classArrayAn array mapping has a primary key consisting of the key columns + index column.classBagA mapping model object representing a collection of typeCollectionwhich may contain duplicates.classIdentifierBagA bag with a generated (surrogate) key.classIdentifierCollectionA mapping model object representing a collection with a synthetic "identifier" column, that is, a surrogate key.classIndexedCollectionIndexed collections include Lists, Maps, arrays and primitive arrays.classListA mapping model object representing a collection of typeList.classMapA mapping model object representing a collection of typeMap.classPrimitiveArrayA primitive array has a primary key consisting of the key columns + index column.classSetA mapping model object representing a collection of typeList.Methods in org.hibernate.mapping with parameters of type Collection Modifier and Type Method Description booleanCollection. isSame(Collection other)booleanIdentifierCollection. isSame(Collection other)booleanIndexedCollection. 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 booleanEntityCollectionPart. finishInitialization(CollectionPersister collectionDescriptor, Collection bootValueMapping, String fkTargetModelPartName, MappingModelCreationProcess creationProcess)Perform any delayed initialization.booleanManyToManyCollectionPart. finishInitialization(CollectionPersister collectionDescriptor, Collection bootCollectionDescriptor, String fkTargetModelPartName, MappingModelCreationProcess creationProcess)booleanOneToManyCollectionPart. finishInitialization(CollectionPersister collectionDescriptor, Collection bootValueMapping, String fkTargetModelPartName, MappingModelCreationProcess creationProcess)voidPluralAttributeMappingImpl. finishInitialization(Property bootProperty, Collection bootDescriptor, MappingModelCreationProcess creationProcess)Constructors in org.hibernate.metamodel.mapping.internal with parameters of type Collection Constructor Description AbstractEntityCollectionPart(CollectionPart.Nature nature, Collection collectionBootDescriptor, CollectionPersister collectionDescriptor, EntityMappingType associatedEntityTypeDescriptor, NotFoundAction notFoundAction, MappingModelCreationProcess creationProcess)ManyToManyCollectionPart(CollectionPart.Nature nature, Collection collectionBootDescriptor, CollectionPersister collectionDescriptor, EntityMappingType associatedEntityDescriptor, NotFoundAction notFoundAction, MappingModelCreationProcess creationProcess)ManyToManyCollectionPart(CollectionPart.Nature nature, Collection collectionBootDescriptor, CollectionPersister collectionDescriptor, EntityMappingType associatedEntityDescriptor, MappingModelCreationProcess creationProcess)OneToManyCollectionPart(CollectionPart.Nature nature, Collection bootCollectionDescriptor, CollectionPersister collectionDescriptor, EntityMappingType elementTypeDescriptor, NotFoundAction notFoundAction, MappingModelCreationProcess creationProcess)OneToManyCollectionPart(CollectionPart.Nature nature, Collection bootCollectionDescriptor, CollectionPersister collectionDescriptor, EntityMappingType elementTypeDescriptor, MappingModelCreationProcess creationProcess)PluralAttributeMappingImpl(String attributeName, Collection bootDescriptor, PropertyAccess propertyAccess, AttributeMetadata attributeMetadata, CollectionMappingType<?> collectionMappingType, int stateArrayPosition, int fetchableIndex, 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 CollectionPersisterPersisterFactoryImpl. createCollectionPersister(Collection collectionBinding, CollectionDataAccess cacheAccessStrategy, RuntimeModelCreationContext creationContext)CollectionPersisterPersisterFactoryImpl. 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 CollectionPersisterPersisterFactory. createCollectionPersister(Collection collectionBinding, CollectionDataAccess cacheAccessStrategy, RuntimeModelCreationContext creationContext)Create a collection persister instance.CollectionPersisterPersisterFactory. 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.
-