Uses of Interface
org.hibernate.collection.spi.CollectionSemantics
-
Packages that use CollectionSemantics Package Description 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.mapping This package defines the Hibernate configuration-time mapping model.org.hibernate.metamodel.mapping Defines the runtime mapping metamodel, which describes the mapping of the application's domain model parts (entities, attributes) to relational database objects (tables, columns).org.hibernate.persister.collection This package abstracts persistence mechanisms for collections.org.hibernate.type.descriptor.java.spi -
-
Uses of CollectionSemantics in org.hibernate.collection.internal
Classes in org.hibernate.collection.internal that implement CollectionSemantics Modifier and Type Class Description classCustomCollectionTypeSemantics<CE,E>A collection semantics wrapper forCollectionType.classStandardArraySemantics<E>CollectionSemantics implementation for arraysclassStandardBagSemantics<E>CollectionSemantics for bagsclassStandardIdentifierBagSemantics<E>CollectionSemantics implementation for id-bagsclassStandardListSemantics<E>Hibernate's standard CollectionSemantics for ListsclassStandardMapSemantics<K,V>CollectionSemantics for mapsclassStandardOrderedMapSemantics<K,V>classStandardOrderedSetSemantics<E>classStandardSetSemantics<E>classStandardSortedMapSemantics<K,V>classStandardSortedSetSemantics<E>Methods in org.hibernate.collection.internal that return CollectionSemantics Modifier and Type Method Description CollectionSemanticsStandardCollectionSemanticsResolver. resolveRepresentation(Collection bootDescriptor) -
Uses of CollectionSemantics in org.hibernate.collection.spi
Subinterfaces of CollectionSemantics in org.hibernate.collection.spi Modifier and Type Interface Description interfaceBagSemantics<BE extends Collection<E>,E>interfaceMapSemantics<MKV extends Map<K,V>,K,V>Extension ofCollectionSemanticsfor MapsClasses in org.hibernate.collection.spi that implement CollectionSemantics Modifier and Type Class Description classAbstractBagSemantics<E>classAbstractMapSemantics<MKV extends Map<K,V>,K,V>classAbstractSetSemantics<SE extends Set<E>,E>Methods in org.hibernate.collection.spi that return CollectionSemantics Modifier and Type Method Description <CE,E>
CollectionSemantics<CE,E>CollectionSemanticsResolver. resolveRepresentation(Collection bootDescriptor) -
Uses of CollectionSemantics in org.hibernate.mapping
Methods in org.hibernate.mapping that return CollectionSemantics Modifier and Type Method Description CollectionSemantics<?,?>Collection. getCollectionSemantics()CollectionSemantics<?,?>SemanticsResolver. resolve(CollectionType explicitType)Deprecated. -
Uses of CollectionSemantics in org.hibernate.metamodel.mapping
Methods in org.hibernate.metamodel.mapping that return CollectionSemantics Modifier and Type Method Description CollectionSemantics<C,?>CollectionMappingType. getCollectionSemantics() -
Uses of CollectionSemantics in org.hibernate.persister.collection
Methods in org.hibernate.persister.collection that return CollectionSemantics Modifier and Type Method Description CollectionSemantics<?,?>AbstractCollectionPersister. getCollectionSemantics()CollectionSemantics<?,?>CollectionPersister. getCollectionSemantics() -
Uses of CollectionSemantics in org.hibernate.type.descriptor.java.spi
Methods in org.hibernate.type.descriptor.java.spi that return CollectionSemantics Modifier and Type Method Description CollectionSemantics<C,E>BasicCollectionJavaType. getSemantics()CollectionSemantics<C,?>CollectionJavaType. getSemantics()Constructors in org.hibernate.type.descriptor.java.spi with parameters of type CollectionSemantics Constructor Description BasicCollectionJavaType(ParameterizedType type, JavaType<E> componentJavaType, CollectionSemantics<C,E> semantics)CollectionJavaType(Class<? extends C> type, CollectionSemantics<C,?> semantics)
-