Class DateMap<T>
- java.lang.Object
-
- java.util.AbstractMap<K,V>
-
- java.util.TreeMap<java.lang.Long,T>
-
- com.djrapitops.plan.delivery.domain.DateMap<T>
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Cloneable
,java.util.Map<java.lang.Long,T>
,java.util.NavigableMap<java.lang.Long,T>
,java.util.SortedMap<java.lang.Long,T>
public class DateMap<T> extends java.util.TreeMap<java.lang.Long,T>
Basic TreeMap that uses Epoch MS as keys.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
countBetween(long after, long before)
boolean
hasValuesBetween(long after, long before)
-
Methods inherited from class java.util.TreeMap
ceilingEntry, ceilingKey, clear, clone, comparator, containsKey, containsValue, descendingKeySet, descendingMap, entrySet, firstEntry, firstKey, floorEntry, floorKey, forEach, get, headMap, headMap, higherEntry, higherKey, keySet, lastEntry, lastKey, lowerEntry, lowerKey, navigableKeySet, pollFirstEntry, pollLastEntry, put, putAll, remove, replace, replace, replaceAll, size, subMap, subMap, tailMap, tailMap, values
-
-
-
-
Constructor Detail
-
DateMap
public DateMap()
-
DateMap
public DateMap(java.util.Map<java.lang.Long,T> map)
-
-