Uses of Interface
it.unimi.dsi.fastutil.doubles.Double2ObjectSortedMap

Packages that use Double2ObjectSortedMap
it.unimi.dsi.fastutil.doubles Provides type-specific classes for double elements or keys. 
 

Uses of Double2ObjectSortedMap in it.unimi.dsi.fastutil.doubles
 

Classes in it.unimi.dsi.fastutil.doubles that implement Double2ObjectSortedMap
 class AbstractDouble2ObjectSortedMap<V>
          An abstract class providing basic methods for sorted maps implementing a type-specific interface.
 class Double2ObjectAVLTreeMap<V>
          A type-specific AVL tree map with a fast, small-footprint implementation.
 class Double2ObjectLinkedOpenHashMap<V>
          A type-specific linked hash map with with a fast, small-footprint implementation.
 class Double2ObjectRBTreeMap<V>
          A type-specific red-black tree map with a fast, small-footprint implementation.
static class Double2ObjectSortedMaps.EmptySortedMap<V>
          An immutable class representing an empty type-specific sorted map.
static class Double2ObjectSortedMaps.Singleton<V>
          An immutable class representing a type-specific singleton sorted map.
static class Double2ObjectSortedMaps.SynchronizedSortedMap<V>
          A synchronized wrapper class for sorted maps.
static class Double2ObjectSortedMaps.UnmodifiableSortedMap<V>
          An unmodifiable wrapper class for sorted maps.
 

Fields in it.unimi.dsi.fastutil.doubles declared as Double2ObjectSortedMap
protected  Double2ObjectSortedMap<V> Double2ObjectSortedMaps.SynchronizedSortedMap.sortedMap
           
protected  Double2ObjectSortedMap<V> Double2ObjectSortedMaps.UnmodifiableSortedMap.sortedMap
           
 

Methods in it.unimi.dsi.fastutil.doubles that return Double2ObjectSortedMap
 Double2ObjectSortedMap<V> Double2ObjectSortedMap.headMap(double toKey)
          Returns a view of the portion of this sorted map whose keys are strictly less than toKey.
 Double2ObjectSortedMap<V> Double2ObjectAVLTreeMap.headMap(double to)
           
 Double2ObjectSortedMap<V> Double2ObjectLinkedOpenHashMap.headMap(double to)
           
 Double2ObjectSortedMap<V> Double2ObjectSortedMaps.EmptySortedMap.headMap(double to)
           
 Double2ObjectSortedMap<V> Double2ObjectSortedMaps.Singleton.headMap(double to)
           
 Double2ObjectSortedMap<V> Double2ObjectSortedMaps.SynchronizedSortedMap.headMap(double to)
           
 Double2ObjectSortedMap<V> Double2ObjectSortedMaps.UnmodifiableSortedMap.headMap(double to)
           
 Double2ObjectSortedMap<V> Double2ObjectRBTreeMap.headMap(double to)
           
 Double2ObjectSortedMap<V> Double2ObjectSortedMap.headMap(Double toKey)
          Returns a view of the portion of this sorted map whose keys are strictly less than toKey.
 Double2ObjectSortedMap<V> AbstractDouble2ObjectSortedMap.headMap(Double to)
          Delegates to the corresponding type-specific method.
 Double2ObjectSortedMap<V> Double2ObjectSortedMaps.EmptySortedMap.headMap(Double oto)
           
 Double2ObjectSortedMap<V> Double2ObjectSortedMaps.Singleton.headMap(Double oto)
           
 Double2ObjectSortedMap<V> Double2ObjectSortedMaps.SynchronizedSortedMap.headMap(Double to)
           
 Double2ObjectSortedMap<V> Double2ObjectSortedMaps.UnmodifiableSortedMap.headMap(Double to)
           
static
<V> Double2ObjectSortedMap<V>
Double2ObjectSortedMaps.singleton(double key, V value)
          Returns a type-specific immutable sorted map containing only the specified pair.
static
<V> Double2ObjectSortedMap<V>
Double2ObjectSortedMaps.singleton(Double key, V value)
          Returns a type-specific immutable sorted map containing only the specified pair.
static
<V> Double2ObjectSortedMap<V>
Double2ObjectSortedMaps.singleton(double key, V value, DoubleComparator comparator)
          Returns a type-specific immutable sorted map containing only the specified pair.
static
<V> Double2ObjectSortedMap<V>
Double2ObjectSortedMaps.singleton(Double key, V value, DoubleComparator comparator)
          RETURNS a type-specific immutable sorted map containing only the specified pair.
 Double2ObjectSortedMap<V> Double2ObjectSortedMap.subMap(double fromKey, double toKey)
          Returns a view of the portion of this sorted map whose keys range from fromKey, inclusive, to toKey, exclusive.
 Double2ObjectSortedMap<V> Double2ObjectAVLTreeMap.subMap(double from, double to)
           
 Double2ObjectSortedMap<V> Double2ObjectLinkedOpenHashMap.subMap(double from, double to)
           
 Double2ObjectSortedMap<V> Double2ObjectSortedMaps.EmptySortedMap.subMap(double from, double to)
           
 Double2ObjectSortedMap<V> Double2ObjectSortedMaps.Singleton.subMap(double from, double to)
           
 Double2ObjectSortedMap<V> Double2ObjectSortedMaps.SynchronizedSortedMap.subMap(double from, double to)
           
 Double2ObjectSortedMap<V> Double2ObjectSortedMaps.UnmodifiableSortedMap.subMap(double from, double to)
           
 Double2ObjectSortedMap<V> Double2ObjectRBTreeMap.subMap(double from, double to)
           
 Double2ObjectSortedMap<V> Double2ObjectSortedMap.subMap(Double fromKey, Double toKey)
          Returns a view of the portion of this sorted map whose keys range from fromKey, inclusive, to toKey, exclusive.
 Double2ObjectSortedMap<V> AbstractDouble2ObjectSortedMap.subMap(Double from, Double to)
          Delegates to the corresponding type-specific method.
 Double2ObjectSortedMap<V> Double2ObjectSortedMaps.EmptySortedMap.subMap(Double ofrom, Double oto)
           
 Double2ObjectSortedMap<V> Double2ObjectSortedMaps.Singleton.subMap(Double ofrom, Double oto)
           
 Double2ObjectSortedMap<V> Double2ObjectSortedMaps.SynchronizedSortedMap.subMap(Double from, Double to)
           
 Double2ObjectSortedMap<V> Double2ObjectSortedMaps.UnmodifiableSortedMap.subMap(Double from, Double to)
           
static
<V> Double2ObjectSortedMap<V>
Double2ObjectSortedMaps.synchronize(Double2ObjectSortedMap<V> m)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map.
static
<V> Double2ObjectSortedMap<V>
Double2ObjectSortedMaps.synchronize(Double2ObjectSortedMap<V> m, Object sync)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map, using an assigned object to synchronize.
 Double2ObjectSortedMap<V> Double2ObjectSortedMap.tailMap(double fromKey)
          Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey.
 Double2ObjectSortedMap<V> Double2ObjectAVLTreeMap.tailMap(double from)
           
 Double2ObjectSortedMap<V> Double2ObjectLinkedOpenHashMap.tailMap(double from)
           
 Double2ObjectSortedMap<V> Double2ObjectSortedMaps.EmptySortedMap.tailMap(double from)
           
 Double2ObjectSortedMap<V> Double2ObjectSortedMaps.Singleton.tailMap(double from)
           
 Double2ObjectSortedMap<V> Double2ObjectSortedMaps.SynchronizedSortedMap.tailMap(double from)
           
 Double2ObjectSortedMap<V> Double2ObjectSortedMaps.UnmodifiableSortedMap.tailMap(double from)
           
 Double2ObjectSortedMap<V> Double2ObjectRBTreeMap.tailMap(double from)
           
 Double2ObjectSortedMap<V> Double2ObjectSortedMap.tailMap(Double fromKey)
          Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey.
 Double2ObjectSortedMap<V> AbstractDouble2ObjectSortedMap.tailMap(Double from)
          Delegates to the corresponding type-specific method.
 Double2ObjectSortedMap<V> Double2ObjectSortedMaps.EmptySortedMap.tailMap(Double ofrom)
           
 Double2ObjectSortedMap<V> Double2ObjectSortedMaps.Singleton.tailMap(Double ofrom)
           
 Double2ObjectSortedMap<V> Double2ObjectSortedMaps.SynchronizedSortedMap.tailMap(Double from)
           
 Double2ObjectSortedMap<V> Double2ObjectSortedMaps.UnmodifiableSortedMap.tailMap(Double from)
           
static
<V> Double2ObjectSortedMap<V>
Double2ObjectSortedMaps.unmodifiable(Double2ObjectSortedMap<V> m)
          Returns an unmodifiable type-specific sorted map backed by the given type-specific sorted map.
 

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

Constructors in it.unimi.dsi.fastutil.doubles with parameters of type Double2ObjectSortedMap
Double2ObjectAVLTreeMap(Double2ObjectSortedMap<V> m)
          Creates a new tree map copying a given sorted map (and its Comparator).
Double2ObjectRBTreeMap(Double2ObjectSortedMap<V> m)
          Creates a new tree map copying a given sorted map (and its Comparator).
Double2ObjectSortedMaps.SynchronizedSortedMap(Double2ObjectSortedMap<V> m)
           
Double2ObjectSortedMaps.SynchronizedSortedMap(Double2ObjectSortedMap<V> m, Object sync)
           
Double2ObjectSortedMaps.UnmodifiableSortedMap(Double2ObjectSortedMap<V> m)
           
 



Copyright © 2011. All Rights Reserved.