Uses of Interface
it.unimi.dsi.fastutil.ints.Int2LongSortedMap

Packages that use Int2LongSortedMap
it.unimi.dsi.fastutil.ints Provides type-specific classes for integer elements or keys. 
 

Uses of Int2LongSortedMap in it.unimi.dsi.fastutil.ints
 

Classes in it.unimi.dsi.fastutil.ints that implement Int2LongSortedMap
 class AbstractInt2LongSortedMap
          An abstract class providing basic methods for sorted maps implementing a type-specific interface.
 class Int2LongAVLTreeMap
          A type-specific AVL tree map with a fast, small-footprint implementation.
 class Int2LongLinkedOpenHashMap
          A type-specific linked hash map with with a fast, small-footprint implementation.
 class Int2LongRBTreeMap
          A type-specific red-black tree map with a fast, small-footprint implementation.
static class Int2LongSortedMaps.EmptySortedMap
          An immutable class representing an empty type-specific sorted map.
static class Int2LongSortedMaps.Singleton
          An immutable class representing a type-specific singleton sorted map.
static class Int2LongSortedMaps.SynchronizedSortedMap
          A synchronized wrapper class for sorted maps.
static class Int2LongSortedMaps.UnmodifiableSortedMap
          An unmodifiable wrapper class for sorted maps.
 

Fields in it.unimi.dsi.fastutil.ints declared as Int2LongSortedMap
protected  Int2LongSortedMap Int2LongSortedMaps.SynchronizedSortedMap.sortedMap
           
protected  Int2LongSortedMap Int2LongSortedMaps.UnmodifiableSortedMap.sortedMap
           
 

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

Methods in it.unimi.dsi.fastutil.ints with parameters of type Int2LongSortedMap
static Int2LongSortedMap Int2LongSortedMaps.synchronize(Int2LongSortedMap m)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map.
static Int2LongSortedMap Int2LongSortedMaps.synchronize(Int2LongSortedMap 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 Int2LongSortedMap Int2LongSortedMaps.unmodifiable(Int2LongSortedMap m)
          Returns an unmodifiable type-specific sorted map backed by the given type-specific sorted map.
 

Constructors in it.unimi.dsi.fastutil.ints with parameters of type Int2LongSortedMap
Int2LongAVLTreeMap(Int2LongSortedMap m)
          Creates a new tree map copying a given sorted map (and its Comparator).
Int2LongRBTreeMap(Int2LongSortedMap m)
          Creates a new tree map copying a given sorted map (and its Comparator).
Int2LongSortedMaps.SynchronizedSortedMap(Int2LongSortedMap m)
           
Int2LongSortedMaps.SynchronizedSortedMap(Int2LongSortedMap m, Object sync)
           
Int2LongSortedMaps.UnmodifiableSortedMap(Int2LongSortedMap m)
           
 



Copyright © 2011. All Rights Reserved.