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

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

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

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

Fields in it.unimi.dsi.fastutil.ints declared as Int2IntSortedMap
protected  Int2IntSortedMap Int2IntSortedMaps.SynchronizedSortedMap.sortedMap
           
protected  Int2IntSortedMap Int2IntSortedMaps.UnmodifiableSortedMap.sortedMap
           
 

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



Copyright © 2011. All Rights Reserved.