Uses of Interface
org.hibernate.collection.spi.CollectionSemantics
-
Packages that use CollectionSemantics Package Description org.hibernate.collection.internal Internal implementations and support for persistent collectionsorg.hibernate.collection.spi SPI definitions for persistent collections.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 class
CustomCollectionTypeSemantics<CE,E>
A collection semantics wrapper forCollectionType
.class
StandardArraySemantics<E>
CollectionSemantics implementation for arraysclass
StandardBagSemantics<E>
CollectionSemantics for bagsclass
StandardIdentifierBagSemantics<E>
CollectionSemantics implementation for id-bagsclass
StandardListSemantics<E>
Hibernate's standard CollectionSemantics for Listsclass
StandardMapSemantics<K,V>
CollectionSemantics for mapsclass
StandardOrderedMapSemantics<K,V>
class
StandardOrderedSetSemantics<E>
class
StandardSetSemantics<E>
class
StandardSortedMapSemantics<K,V>
class
StandardSortedSetSemantics<E>
Methods in org.hibernate.collection.internal that return CollectionSemantics Modifier and Type Method Description CollectionSemantics
StandardCollectionSemanticsResolver. resolveRepresentation(Collection bootDescriptor)
-
Uses of CollectionSemantics in org.hibernate.collection.spi
Subinterfaces of CollectionSemantics in org.hibernate.collection.spi Modifier and Type Interface Description interface
BagSemantics<BE extends Collection<E>,E>
interface
MapSemantics<MKV extends Map<K,V>,K,V>
Extension of CollectionSemantics for MapsClasses in org.hibernate.collection.spi that implement CollectionSemantics Modifier and Type Class Description class
AbstractBagSemantics<E>
class
AbstractMapSemantics<MKV extends Map<K,V>,K,V>
class
AbstractSetSemantics<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)
-