Class SortedMapProxy<K,V>
- java.lang.Object
-
- org.hibernate.envers.internal.entities.mapper.relation.lazy.proxy.SortedMapProxy<K,V>
-
- All Implemented Interfaces:
Serializable,Map<K,V>,SortedMap<K,V>,org.hibernate.collection.spi.LazyInitializable
public class SortedMapProxy<K,V> extends Object implements SortedMap<K,V>, org.hibernate.collection.spi.LazyInitializable, Serializable
- Author:
- Adam Warski (adam at warski dot org)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SortedMapProxy()SortedMapProxy(Initializor<SortedMap<K,V>> initializor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()Comparator<? super K>comparator()booleancontainsKey(Object o)booleancontainsValue(Object o)Set<Map.Entry<K,V>>entrySet()booleanequals(Object o)KfirstKey()voidforceInitialization()Vget(Object o)inthashCode()SortedMap<K,V>headMap(K k)booleanisEmpty()Set<K>keySet()KlastKey()Vput(K k, V v)voidputAll(Map<? extends K,? extends V> map)Vremove(Object o)intsize()SortedMap<K,V>subMap(K k, K k1)SortedMap<K,V>tailMap(K k)Collection<V>values()booleanwasInitialized()-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAll
-
-
-
-
Constructor Detail
-
SortedMapProxy
public SortedMapProxy()
-
SortedMapProxy
public SortedMapProxy(Initializor<SortedMap<K,V>> initializor)
-
-
Method Detail
-
wasInitialized
public final boolean wasInitialized()
- Specified by:
wasInitializedin interfaceorg.hibernate.collection.spi.LazyInitializable
-
forceInitialization
public final void forceInitialization()
- Specified by:
forceInitializationin interfaceorg.hibernate.collection.spi.LazyInitializable
-
containsKey
public boolean containsKey(Object o)
- Specified by:
containsKeyin interfaceMap<K,V>
-
containsValue
public boolean containsValue(Object o)
- Specified by:
containsValuein interfaceMap<K,V>
-
values
public Collection<V> values()
-
comparator
public Comparator<? super K> comparator()
- Specified by:
comparatorin interfaceSortedMap<K,V>
-
equals
public boolean equals(Object o)
-
-