Package org.esa.snap.core.util
Class BucketMap<K extends Number,V>
- java.lang.Object
- 
- org.esa.snap.core.util.BucketMap<K,V>
 
- 
- 
Constructor SummaryConstructors Constructor Description BucketMap()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()booleancontainsKey(Object key)booleancontainsValue(Object value)Set<Map.Entry<K,V>>entrySet()Vget(Object key)booleanisEmpty()Set<K>keySet()Vput(K minKey, K maxKey, V value)Vput(K key, V value)voidputAll(Map<? extends K,? extends V> m)Vremove(Object key)Vremove(K minKey, K maxKey)intsize()Collection<V>values()- 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface java.util.Mapcompute, computeIfAbsent, computeIfPresent, equals, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAll
 
- 
 
- 
- 
- 
Method Detail- 
containsKeypublic boolean containsKey(Object key) - Specified by:
- containsKeyin interface- Map<K extends Number,V>
 
 - 
containsValuepublic boolean containsValue(Object value) - Specified by:
- containsValuein interface- Map<K extends Number,V>
 
 
- 
 
-