Uses of Interface
it.unimi.dsi.fastutil.objects.Reference2IntSortedMap

Packages that use Reference2IntSortedMap
it.unimi.dsi.fastutil.objects Provides type-specific classes for object elements or keys. 
 

Uses of Reference2IntSortedMap in it.unimi.dsi.fastutil.objects
 

Classes in it.unimi.dsi.fastutil.objects that implement Reference2IntSortedMap
 class AbstractReference2IntSortedMap<K>
          An abstract class providing basic methods for sorted maps implementing a type-specific interface.
 class Reference2IntLinkedOpenHashMap<K>
          A type-specific linked hash map with with a fast, small-footprint implementation.
static class Reference2IntSortedMaps.EmptySortedMap<K>
          An immutable class representing an empty type-specific sorted map.
static class Reference2IntSortedMaps.Singleton<K>
          An immutable class representing a type-specific singleton sorted map.
static class Reference2IntSortedMaps.SynchronizedSortedMap<K>
          A synchronized wrapper class for sorted maps.
static class Reference2IntSortedMaps.UnmodifiableSortedMap<K>
          An unmodifiable wrapper class for sorted maps.
 

Fields in it.unimi.dsi.fastutil.objects declared as Reference2IntSortedMap
protected  Reference2IntSortedMap<K> Reference2IntSortedMaps.SynchronizedSortedMap.sortedMap
           
protected  Reference2IntSortedMap<K> Reference2IntSortedMaps.UnmodifiableSortedMap.sortedMap
           
 

Methods in it.unimi.dsi.fastutil.objects that return Reference2IntSortedMap
 Reference2IntSortedMap<K> Reference2IntSortedMaps.EmptySortedMap.headMap(K to)
           
 Reference2IntSortedMap<K> Reference2IntSortedMaps.Singleton.headMap(K to)
           
 Reference2IntSortedMap<K> Reference2IntSortedMaps.SynchronizedSortedMap.headMap(K to)
           
 Reference2IntSortedMap<K> Reference2IntSortedMaps.UnmodifiableSortedMap.headMap(K to)
           
 Reference2IntSortedMap<K> Reference2IntLinkedOpenHashMap.headMap(K to)
           
 Reference2IntSortedMap<K> Reference2IntSortedMap.headMap(K toKey)
          Returns a view of the portion of this sorted map whose keys are strictly less than toKey.
static
<K> Reference2IntSortedMap<K>
Reference2IntSortedMaps.singleton(K key, int value)
          Returns a type-specific immutable sorted map containing only the specified pair.
static
<K> Reference2IntSortedMap<K>
Reference2IntSortedMaps.singleton(K key, int value, Comparator<? super K> comparator)
          Returns a type-specific immutable sorted map containing only the specified pair.
static
<K> Reference2IntSortedMap<K>
Reference2IntSortedMaps.singleton(K key, Integer value)
          Returns a type-specific immutable sorted map containing only the specified pair.
static
<K> Reference2IntSortedMap<K>
Reference2IntSortedMaps.singleton(K key, Integer value, Comparator<? super K> comparator)
          RETURNS a type-specific immutable sorted map containing only the specified pair.
 Reference2IntSortedMap<K> Reference2IntSortedMaps.EmptySortedMap.subMap(K from, K to)
           
 Reference2IntSortedMap<K> Reference2IntSortedMaps.Singleton.subMap(K from, K to)
           
 Reference2IntSortedMap<K> Reference2IntSortedMaps.SynchronizedSortedMap.subMap(K from, K to)
           
 Reference2IntSortedMap<K> Reference2IntSortedMaps.UnmodifiableSortedMap.subMap(K from, K to)
           
 Reference2IntSortedMap<K> Reference2IntLinkedOpenHashMap.subMap(K from, K to)
           
 Reference2IntSortedMap<K> Reference2IntSortedMap.subMap(K fromKey, K toKey)
          Returns a view of the portion of this sorted map whose keys range from fromKey, inclusive, to toKey, exclusive.
static
<K> Reference2IntSortedMap<K>
Reference2IntSortedMaps.synchronize(Reference2IntSortedMap<K> m)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map.
static
<K> Reference2IntSortedMap<K>
Reference2IntSortedMaps.synchronize(Reference2IntSortedMap<K> m, Object sync)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map, using an assigned object to synchronize.
 Reference2IntSortedMap<K> Reference2IntSortedMaps.EmptySortedMap.tailMap(K from)
           
 Reference2IntSortedMap<K> Reference2IntSortedMaps.Singleton.tailMap(K from)
           
 Reference2IntSortedMap<K> Reference2IntSortedMaps.SynchronizedSortedMap.tailMap(K from)
           
 Reference2IntSortedMap<K> Reference2IntSortedMaps.UnmodifiableSortedMap.tailMap(K from)
           
 Reference2IntSortedMap<K> Reference2IntLinkedOpenHashMap.tailMap(K from)
           
 Reference2IntSortedMap<K> Reference2IntSortedMap.tailMap(K fromKey)
          Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey.
static
<K> Reference2IntSortedMap<K>
Reference2IntSortedMaps.unmodifiable(Reference2IntSortedMap<K> m)
          Returns an unmodifiable type-specific sorted map backed by the given type-specific sorted map.
 

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

Constructors in it.unimi.dsi.fastutil.objects with parameters of type Reference2IntSortedMap
Reference2IntSortedMaps.SynchronizedSortedMap(Reference2IntSortedMap<K> m)
           
Reference2IntSortedMaps.SynchronizedSortedMap(Reference2IntSortedMap<K> m, Object sync)
           
Reference2IntSortedMaps.UnmodifiableSortedMap(Reference2IntSortedMap<K> m)
           
 



Copyright © 2011. All Rights Reserved.