Package org.mp4parser.tools
Class RangeStartMap<K extends Comparable,V>
- java.lang.Object
-
- org.mp4parser.tools.RangeStartMap<K,V>
-
- All Implemented Interfaces:
Map<K,V>
public class RangeStartMap<K extends Comparable,V> extends Object implements Map<K,V>
Created by sannies on 10.09.2014.
-
-
Constructor Summary
Constructors Constructor Description RangeStartMap()RangeStartMap(K k, V v)
-
Method Summary
Modifier and Type Method Description voidclear()booleancontainsKey(Object key)booleancontainsValue(Object value)Set<Map.Entry<K,V>>entrySet()Vget(Object k)booleanisEmpty()Set<K>keySet()Vput(K key, V value)voidputAll(Map<? extends K,? extends V> m)Vremove(Object k)intsize()Collection<V>values()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, equals, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAll
-
-
-
-
Method Detail
-
size
public int size()
- Specified by:
sizein interfaceMap<K extends Comparable,V>
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmptyin interfaceMap<K extends Comparable,V>
-
containsKey
public boolean containsKey(Object key)
- Specified by:
containsKeyin interfaceMap<K extends Comparable,V>
-
containsValue
public boolean containsValue(Object value)
- Specified by:
containsValuein interfaceMap<K extends Comparable,V>
-
putAll
public void putAll(Map<? extends K,? extends V> m)
- Specified by:
putAllin interfaceMap<K extends Comparable,V>
-
clear
public void clear()
- Specified by:
clearin interfaceMap<K extends Comparable,V>
-
values
public Collection<V> values()
- Specified by:
valuesin interfaceMap<K extends Comparable,V>
-
-