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

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

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

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

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

Methods in it.unimi.dsi.fastutil.objects that return Reference2LongSortedMap
 Reference2LongSortedMap<K> Reference2LongSortedMaps.EmptySortedMap.headMap(K to)
           
 Reference2LongSortedMap<K> Reference2LongSortedMaps.Singleton.headMap(K to)
           
 Reference2LongSortedMap<K> Reference2LongSortedMaps.SynchronizedSortedMap.headMap(K to)
           
 Reference2LongSortedMap<K> Reference2LongSortedMaps.UnmodifiableSortedMap.headMap(K to)
           
 Reference2LongSortedMap<K> Reference2LongLinkedOpenHashMap.headMap(K to)
           
 Reference2LongSortedMap<K> Reference2LongSortedMap.headMap(K toKey)
          Returns a view of the portion of this sorted map whose keys are strictly less than toKey.
static
<K> Reference2LongSortedMap<K>
Reference2LongSortedMaps.singleton(K key, long value)
          Returns a type-specific immutable sorted map containing only the specified pair.
static
<K> Reference2LongSortedMap<K>
Reference2LongSortedMaps.singleton(K key, Long value)
          Returns a type-specific immutable sorted map containing only the specified pair.
static
<K> Reference2LongSortedMap<K>
Reference2LongSortedMaps.singleton(K key, long value, Comparator<? super K> comparator)
          Returns a type-specific immutable sorted map containing only the specified pair.
static
<K> Reference2LongSortedMap<K>
Reference2LongSortedMaps.singleton(K key, Long value, Comparator<? super K> comparator)
          RETURNS a type-specific immutable sorted map containing only the specified pair.
 Reference2LongSortedMap<K> Reference2LongSortedMaps.EmptySortedMap.subMap(K from, K to)
           
 Reference2LongSortedMap<K> Reference2LongSortedMaps.Singleton.subMap(K from, K to)
           
 Reference2LongSortedMap<K> Reference2LongSortedMaps.SynchronizedSortedMap.subMap(K from, K to)
           
 Reference2LongSortedMap<K> Reference2LongSortedMaps.UnmodifiableSortedMap.subMap(K from, K to)
           
 Reference2LongSortedMap<K> Reference2LongLinkedOpenHashMap.subMap(K from, K to)
           
 Reference2LongSortedMap<K> Reference2LongSortedMap.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> Reference2LongSortedMap<K>
Reference2LongSortedMaps.synchronize(Reference2LongSortedMap<K> m)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map.
static
<K> Reference2LongSortedMap<K>
Reference2LongSortedMaps.synchronize(Reference2LongSortedMap<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.
 Reference2LongSortedMap<K> Reference2LongSortedMaps.EmptySortedMap.tailMap(K from)
           
 Reference2LongSortedMap<K> Reference2LongSortedMaps.Singleton.tailMap(K from)
           
 Reference2LongSortedMap<K> Reference2LongSortedMaps.SynchronizedSortedMap.tailMap(K from)
           
 Reference2LongSortedMap<K> Reference2LongSortedMaps.UnmodifiableSortedMap.tailMap(K from)
           
 Reference2LongSortedMap<K> Reference2LongLinkedOpenHashMap.tailMap(K from)
           
 Reference2LongSortedMap<K> Reference2LongSortedMap.tailMap(K fromKey)
          Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey.
static
<K> Reference2LongSortedMap<K>
Reference2LongSortedMaps.unmodifiable(Reference2LongSortedMap<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 Reference2LongSortedMap
static
<K> Reference2LongSortedMap<K>
Reference2LongSortedMaps.synchronize(Reference2LongSortedMap<K> m)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map.
static
<K> Reference2LongSortedMap<K>
Reference2LongSortedMaps.synchronize(Reference2LongSortedMap<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> Reference2LongSortedMap<K>
Reference2LongSortedMaps.unmodifiable(Reference2LongSortedMap<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 Reference2LongSortedMap
Reference2LongSortedMaps.SynchronizedSortedMap(Reference2LongSortedMap<K> m)
           
Reference2LongSortedMaps.SynchronizedSortedMap(Reference2LongSortedMap<K> m, Object sync)
           
Reference2LongSortedMaps.UnmodifiableSortedMap(Reference2LongSortedMap<K> m)
           
 



Copyright © 2011. All Rights Reserved.