Uses of Interface
it.unimi.dsi.fastutil.longs.Long2LongSortedMap

Packages that use Long2LongSortedMap
it.unimi.dsi.fastutil.longs Provides type-specific classes for long elements or keys. 
 

Uses of Long2LongSortedMap in it.unimi.dsi.fastutil.longs
 

Classes in it.unimi.dsi.fastutil.longs that implement Long2LongSortedMap
 class AbstractLong2LongSortedMap
          An abstract class providing basic methods for sorted maps implementing a type-specific interface.
 class Long2LongAVLTreeMap
          A type-specific AVL tree map with a fast, small-footprint implementation.
 class Long2LongLinkedOpenHashMap
          A type-specific linked hash map with with a fast, small-footprint implementation.
 class Long2LongRBTreeMap
          A type-specific red-black tree map with a fast, small-footprint implementation.
static class Long2LongSortedMaps.EmptySortedMap
          An immutable class representing an empty type-specific sorted map.
static class Long2LongSortedMaps.Singleton
          An immutable class representing a type-specific singleton sorted map.
static class Long2LongSortedMaps.SynchronizedSortedMap
          A synchronized wrapper class for sorted maps.
static class Long2LongSortedMaps.UnmodifiableSortedMap
          An unmodifiable wrapper class for sorted maps.
 

Fields in it.unimi.dsi.fastutil.longs declared as Long2LongSortedMap
protected  Long2LongSortedMap Long2LongSortedMaps.SynchronizedSortedMap.sortedMap
           
protected  Long2LongSortedMap Long2LongSortedMaps.UnmodifiableSortedMap.sortedMap
           
 

Methods in it.unimi.dsi.fastutil.longs that return Long2LongSortedMap
 Long2LongSortedMap Long2LongSortedMap.headMap(long toKey)
          Returns a view of the portion of this sorted map whose keys are strictly less than toKey.
 Long2LongSortedMap Long2LongLinkedOpenHashMap.headMap(long to)
           
 Long2LongSortedMap Long2LongSortedMaps.EmptySortedMap.headMap(long to)
           
 Long2LongSortedMap Long2LongSortedMaps.Singleton.headMap(long to)
           
 Long2LongSortedMap Long2LongSortedMaps.SynchronizedSortedMap.headMap(long to)
           
 Long2LongSortedMap Long2LongSortedMaps.UnmodifiableSortedMap.headMap(long to)
           
 Long2LongSortedMap Long2LongAVLTreeMap.headMap(long to)
           
 Long2LongSortedMap Long2LongRBTreeMap.headMap(long to)
           
 Long2LongSortedMap Long2LongSortedMap.headMap(Long toKey)
          Returns a view of the portion of this sorted map whose keys are strictly less than toKey.
 Long2LongSortedMap Long2LongSortedMaps.EmptySortedMap.headMap(Long oto)
           
 Long2LongSortedMap Long2LongSortedMaps.Singleton.headMap(Long oto)
           
 Long2LongSortedMap Long2LongSortedMaps.SynchronizedSortedMap.headMap(Long to)
           
 Long2LongSortedMap Long2LongSortedMaps.UnmodifiableSortedMap.headMap(Long to)
           
 Long2LongSortedMap AbstractLong2LongSortedMap.headMap(Long to)
          Delegates to the corresponding type-specific method.
static Long2LongSortedMap Long2LongSortedMaps.singleton(long key, long value)
          Returns a type-specific immutable sorted map containing only the specified pair.
static Long2LongSortedMap Long2LongSortedMaps.singleton(Long key, Long value)
          Returns a type-specific immutable sorted map containing only the specified pair.
static Long2LongSortedMap Long2LongSortedMaps.singleton(long key, long value, LongComparator comparator)
          Returns a type-specific immutable sorted map containing only the specified pair.
static Long2LongSortedMap Long2LongSortedMaps.singleton(Long key, Long value, LongComparator comparator)
          RETURNS a type-specific immutable sorted map containing only the specified pair.
 Long2LongSortedMap Long2LongSortedMap.subMap(long fromKey, long toKey)
          Returns a view of the portion of this sorted map whose keys range from fromKey, inclusive, to toKey, exclusive.
 Long2LongSortedMap Long2LongLinkedOpenHashMap.subMap(long from, long to)
           
 Long2LongSortedMap Long2LongSortedMaps.EmptySortedMap.subMap(long from, long to)
           
 Long2LongSortedMap Long2LongSortedMaps.Singleton.subMap(long from, long to)
           
 Long2LongSortedMap Long2LongSortedMaps.SynchronizedSortedMap.subMap(long from, long to)
           
 Long2LongSortedMap Long2LongSortedMaps.UnmodifiableSortedMap.subMap(long from, long to)
           
 Long2LongSortedMap Long2LongAVLTreeMap.subMap(long from, long to)
           
 Long2LongSortedMap Long2LongRBTreeMap.subMap(long from, long to)
           
 Long2LongSortedMap Long2LongSortedMap.subMap(Long fromKey, Long toKey)
          Returns a view of the portion of this sorted map whose keys range from fromKey, inclusive, to toKey, exclusive.
 Long2LongSortedMap Long2LongSortedMaps.EmptySortedMap.subMap(Long ofrom, Long oto)
           
 Long2LongSortedMap Long2LongSortedMaps.Singleton.subMap(Long ofrom, Long oto)
           
 Long2LongSortedMap Long2LongSortedMaps.SynchronizedSortedMap.subMap(Long from, Long to)
           
 Long2LongSortedMap Long2LongSortedMaps.UnmodifiableSortedMap.subMap(Long from, Long to)
           
 Long2LongSortedMap AbstractLong2LongSortedMap.subMap(Long from, Long to)
          Delegates to the corresponding type-specific method.
static Long2LongSortedMap Long2LongSortedMaps.synchronize(Long2LongSortedMap m)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map.
static Long2LongSortedMap Long2LongSortedMaps.synchronize(Long2LongSortedMap m, Object sync)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map, using an assigned object to synchronize.
 Long2LongSortedMap Long2LongSortedMap.tailMap(long fromKey)
          Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey.
 Long2LongSortedMap Long2LongLinkedOpenHashMap.tailMap(long from)
           
 Long2LongSortedMap Long2LongSortedMaps.EmptySortedMap.tailMap(long from)
           
 Long2LongSortedMap Long2LongSortedMaps.Singleton.tailMap(long from)
           
 Long2LongSortedMap Long2LongSortedMaps.SynchronizedSortedMap.tailMap(long from)
           
 Long2LongSortedMap Long2LongSortedMaps.UnmodifiableSortedMap.tailMap(long from)
           
 Long2LongSortedMap Long2LongAVLTreeMap.tailMap(long from)
           
 Long2LongSortedMap Long2LongRBTreeMap.tailMap(long from)
           
 Long2LongSortedMap Long2LongSortedMap.tailMap(Long fromKey)
          Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey.
 Long2LongSortedMap Long2LongSortedMaps.EmptySortedMap.tailMap(Long ofrom)
           
 Long2LongSortedMap Long2LongSortedMaps.Singleton.tailMap(Long ofrom)
           
 Long2LongSortedMap Long2LongSortedMaps.SynchronizedSortedMap.tailMap(Long from)
           
 Long2LongSortedMap Long2LongSortedMaps.UnmodifiableSortedMap.tailMap(Long from)
           
 Long2LongSortedMap AbstractLong2LongSortedMap.tailMap(Long from)
          Delegates to the corresponding type-specific method.
static Long2LongSortedMap Long2LongSortedMaps.unmodifiable(Long2LongSortedMap m)
          Returns an unmodifiable type-specific sorted map backed by the given type-specific sorted map.
 

Methods in it.unimi.dsi.fastutil.longs with parameters of type Long2LongSortedMap
static Long2LongSortedMap Long2LongSortedMaps.synchronize(Long2LongSortedMap m)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map.
static Long2LongSortedMap Long2LongSortedMaps.synchronize(Long2LongSortedMap m, Object sync)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map, using an assigned object to synchronize.
static Long2LongSortedMap Long2LongSortedMaps.unmodifiable(Long2LongSortedMap m)
          Returns an unmodifiable type-specific sorted map backed by the given type-specific sorted map.
 

Constructors in it.unimi.dsi.fastutil.longs with parameters of type Long2LongSortedMap
Long2LongAVLTreeMap(Long2LongSortedMap m)
          Creates a new tree map copying a given sorted map (and its Comparator).
Long2LongRBTreeMap(Long2LongSortedMap m)
          Creates a new tree map copying a given sorted map (and its Comparator).
Long2LongSortedMaps.SynchronizedSortedMap(Long2LongSortedMap m)
           
Long2LongSortedMaps.SynchronizedSortedMap(Long2LongSortedMap m, Object sync)
           
Long2LongSortedMaps.UnmodifiableSortedMap(Long2LongSortedMap m)
           
 



Copyright © 2011. All Rights Reserved.