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 collectionsorg.hibernate.mapping org.hibernate.metamodel.mapping Hibernate's run-time mapping model.org.hibernate.persister.collection 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)
-
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)
-