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

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

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

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

Fields in it.unimi.dsi.fastutil.longs declared as Long2ShortSortedMap
protected  Long2ShortSortedMap Long2ShortSortedMaps.SynchronizedSortedMap.sortedMap
           
protected  Long2ShortSortedMap Long2ShortSortedMaps.UnmodifiableSortedMap.sortedMap
           
 

Methods in it.unimi.dsi.fastutil.longs that return Long2ShortSortedMap
 Long2ShortSortedMap Long2ShortLinkedOpenHashMap.headMap(long to)
           
 Long2ShortSortedMap Long2ShortSortedMap.headMap(long toKey)
          Returns a view of the portion of this sorted map whose keys are strictly less than toKey.
 Long2ShortSortedMap Long2ShortRBTreeMap.headMap(long to)
           
 Long2ShortSortedMap Long2ShortAVLTreeMap.headMap(long to)
           
 Long2ShortSortedMap Long2ShortSortedMaps.EmptySortedMap.headMap(long to)
           
 Long2ShortSortedMap Long2ShortSortedMaps.Singleton.headMap(long to)
           
 Long2ShortSortedMap Long2ShortSortedMaps.SynchronizedSortedMap.headMap(long to)
           
 Long2ShortSortedMap Long2ShortSortedMaps.UnmodifiableSortedMap.headMap(long to)
           
 Long2ShortSortedMap Long2ShortSortedMap.headMap(Long toKey)
          Returns a view of the portion of this sorted map whose keys are strictly less than toKey.
 Long2ShortSortedMap AbstractLong2ShortSortedMap.headMap(Long to)
          Delegates to the corresponding type-specific method.
 Long2ShortSortedMap Long2ShortSortedMaps.EmptySortedMap.headMap(Long oto)
           
 Long2ShortSortedMap Long2ShortSortedMaps.Singleton.headMap(Long oto)
           
 Long2ShortSortedMap Long2ShortSortedMaps.SynchronizedSortedMap.headMap(Long to)
           
 Long2ShortSortedMap Long2ShortSortedMaps.UnmodifiableSortedMap.headMap(Long to)
           
static Long2ShortSortedMap Long2ShortSortedMaps.singleton(long key, short value)
          Returns a type-specific immutable sorted map containing only the specified pair.
static Long2ShortSortedMap Long2ShortSortedMaps.singleton(Long key, Short value)
          Returns a type-specific immutable sorted map containing only the specified pair.
static Long2ShortSortedMap Long2ShortSortedMaps.singleton(long key, short value, LongComparator comparator)
          Returns a type-specific immutable sorted map containing only the specified pair.
static Long2ShortSortedMap Long2ShortSortedMaps.singleton(Long key, Short value, LongComparator comparator)
          RETURNS a type-specific immutable sorted map containing only the specified pair.
 Long2ShortSortedMap Long2ShortLinkedOpenHashMap.subMap(long from, long to)
           
 Long2ShortSortedMap Long2ShortSortedMap.subMap(long fromKey, long toKey)
          Returns a view of the portion of this sorted map whose keys range from fromKey, inclusive, to toKey, exclusive.
 Long2ShortSortedMap Long2ShortRBTreeMap.subMap(long from, long to)
           
 Long2ShortSortedMap Long2ShortAVLTreeMap.subMap(long from, long to)
           
 Long2ShortSortedMap Long2ShortSortedMaps.EmptySortedMap.subMap(long from, long to)
           
 Long2ShortSortedMap Long2ShortSortedMaps.Singleton.subMap(long from, long to)
           
 Long2ShortSortedMap Long2ShortSortedMaps.SynchronizedSortedMap.subMap(long from, long to)
           
 Long2ShortSortedMap Long2ShortSortedMaps.UnmodifiableSortedMap.subMap(long from, long to)
           
 Long2ShortSortedMap Long2ShortSortedMap.subMap(Long fromKey, Long toKey)
          Returns a view of the portion of this sorted map whose keys range from fromKey, inclusive, to toKey, exclusive.
 Long2ShortSortedMap AbstractLong2ShortSortedMap.subMap(Long from, Long to)
          Delegates to the corresponding type-specific method.
 Long2ShortSortedMap Long2ShortSortedMaps.EmptySortedMap.subMap(Long ofrom, Long oto)
           
 Long2ShortSortedMap Long2ShortSortedMaps.Singleton.subMap(Long ofrom, Long oto)
           
 Long2ShortSortedMap Long2ShortSortedMaps.SynchronizedSortedMap.subMap(Long from, Long to)
           
 Long2ShortSortedMap Long2ShortSortedMaps.UnmodifiableSortedMap.subMap(Long from, Long to)
           
static Long2ShortSortedMap Long2ShortSortedMaps.synchronize(Long2ShortSortedMap m)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map.
static Long2ShortSortedMap Long2ShortSortedMaps.synchronize(Long2ShortSortedMap m, Object sync)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map, using an assigned object to synchronize.
 Long2ShortSortedMap Long2ShortLinkedOpenHashMap.tailMap(long from)
           
 Long2ShortSortedMap Long2ShortSortedMap.tailMap(long fromKey)
          Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey.
 Long2ShortSortedMap Long2ShortRBTreeMap.tailMap(long from)
           
 Long2ShortSortedMap Long2ShortAVLTreeMap.tailMap(long from)
           
 Long2ShortSortedMap Long2ShortSortedMaps.EmptySortedMap.tailMap(long from)
           
 Long2ShortSortedMap Long2ShortSortedMaps.Singleton.tailMap(long from)
           
 Long2ShortSortedMap Long2ShortSortedMaps.SynchronizedSortedMap.tailMap(long from)
           
 Long2ShortSortedMap Long2ShortSortedMaps.UnmodifiableSortedMap.tailMap(long from)
           
 Long2ShortSortedMap Long2ShortSortedMap.tailMap(Long fromKey)
          Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey.
 Long2ShortSortedMap AbstractLong2ShortSortedMap.tailMap(Long from)
          Delegates to the corresponding type-specific method.
 Long2ShortSortedMap Long2ShortSortedMaps.EmptySortedMap.tailMap(Long ofrom)
           
 Long2ShortSortedMap Long2ShortSortedMaps.Singleton.tailMap(Long ofrom)
           
 Long2ShortSortedMap Long2ShortSortedMaps.SynchronizedSortedMap.tailMap(Long from)
           
 Long2ShortSortedMap Long2ShortSortedMaps.UnmodifiableSortedMap.tailMap(Long from)
           
static Long2ShortSortedMap Long2ShortSortedMaps.unmodifiable(Long2ShortSortedMap 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 Long2ShortSortedMap
static Long2ShortSortedMap Long2ShortSortedMaps.synchronize(Long2ShortSortedMap m)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map.
static Long2ShortSortedMap Long2ShortSortedMaps.synchronize(Long2ShortSortedMap 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 Long2ShortSortedMap Long2ShortSortedMaps.unmodifiable(Long2ShortSortedMap 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 Long2ShortSortedMap
Long2ShortAVLTreeMap(Long2ShortSortedMap m)
          Creates a new tree map copying a given sorted map (and its Comparator).
Long2ShortRBTreeMap(Long2ShortSortedMap m)
          Creates a new tree map copying a given sorted map (and its Comparator).
Long2ShortSortedMaps.SynchronizedSortedMap(Long2ShortSortedMap m)
           
Long2ShortSortedMaps.SynchronizedSortedMap(Long2ShortSortedMap m, Object sync)
           
Long2ShortSortedMaps.UnmodifiableSortedMap(Long2ShortSortedMap m)
           
 



Copyright © 2011. All Rights Reserved.