Package org.hibernate.collection.spi
Interface MapSemantics<MKV extends Map<K,V>,K,V>
-
- All Superinterfaces:
CollectionSemantics<MKV,V>
- All Known Implementing Classes:
AbstractMapSemantics
,StandardMapSemantics
,StandardOrderedMapSemantics
,StandardSortedMapSemantics
public interface MapSemantics<MKV extends Map<K,V>,K,V> extends CollectionSemantics<MKV,V>
Extension ofCollectionSemantics
for Maps
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Iterator<K>
getKeyIterator(MKV rawMap)
void
visitEntries(MKV rawMap, BiConsumer<? super K,? super V> action)
void
visitKeys(MKV rawMap, Consumer<? super K> action)
-
Methods inherited from interface org.hibernate.collection.spi.CollectionSemantics
createInitializerProducer, createInitializerProducer, getCollectionClassification, getCollectionJavaType, getElementIterator, instantiateRaw, instantiateWrapper, visitElements, wrap
-
-