Uses of Class
com.cedarsoftware.util.TrackingMap

Packages that use TrackingMap
Package
Description
 
  • Uses of TrackingMap in com.cedarsoftware.util

    Methods in com.cedarsoftware.util that return TrackingMap
    Modifier and Type
    Method
    Description
    TrackingMap.headMap(K toKey)
    Returns a view of the portion of this map whose keys are strictly less than toKey.
    TrackingMap.headMap(K toKey, boolean inclusive)
    Returns a view of the portion of this map whose keys are less than (or equal to, if inclusive is true) toKey.
    TrackingMap.subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive)
    Returns a view of the portion of this map whose keys range from fromKey to toKey.
    TrackingMap.subMap(K fromKey, K toKey)
    Returns a view of the portion of this map whose keys range from fromKey, inclusive, to toKey, exclusive.
    TrackingMap.tailMap(K fromKey)
    Returns a view of the portion of this map whose keys are greater than or equal to fromKey.
    TrackingMap.tailMap(K fromKey, boolean inclusive)
    Returns a view of the portion of this map whose keys are greater than (or equal to, if inclusive is true) fromKey.
    Methods in com.cedarsoftware.util with parameters of type TrackingMap
    Modifier and Type
    Method
    Description
    void
    TrackingMap.informAdditionalUsage(TrackingMap<K,V> additional)
    Add the used keys from the passed in TrackingMap to this TrackingMap's keysUsed.