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

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

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

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

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

Methods in it.unimi.dsi.fastutil.doubles that return Double2ReferenceSortedMap
 Double2ReferenceSortedMap<V> Double2ReferenceAVLTreeMap.headMap(double to)
           
 Double2ReferenceSortedMap<V> Double2ReferenceRBTreeMap.headMap(double to)
           
 Double2ReferenceSortedMap<V> Double2ReferenceSortedMap.headMap(double toKey)
          Returns a view of the portion of this sorted map whose keys are strictly less than toKey.
 Double2ReferenceSortedMap<V> Double2ReferenceLinkedOpenHashMap.headMap(double to)
           
 Double2ReferenceSortedMap<V> Double2ReferenceSortedMaps.EmptySortedMap.headMap(double to)
           
 Double2ReferenceSortedMap<V> Double2ReferenceSortedMaps.Singleton.headMap(double to)
           
 Double2ReferenceSortedMap<V> Double2ReferenceSortedMaps.SynchronizedSortedMap.headMap(double to)
           
 Double2ReferenceSortedMap<V> Double2ReferenceSortedMaps.UnmodifiableSortedMap.headMap(double to)
           
 Double2ReferenceSortedMap<V> AbstractDouble2ReferenceSortedMap.headMap(Double to)
          Delegates to the corresponding type-specific method.
 Double2ReferenceSortedMap<V> Double2ReferenceSortedMap.headMap(Double toKey)
          Returns a view of the portion of this sorted map whose keys are strictly less than toKey.
 Double2ReferenceSortedMap<V> Double2ReferenceSortedMaps.EmptySortedMap.headMap(Double oto)
           
 Double2ReferenceSortedMap<V> Double2ReferenceSortedMaps.Singleton.headMap(Double oto)
           
 Double2ReferenceSortedMap<V> Double2ReferenceSortedMaps.SynchronizedSortedMap.headMap(Double to)
           
 Double2ReferenceSortedMap<V> Double2ReferenceSortedMaps.UnmodifiableSortedMap.headMap(Double to)
           
static
<V> Double2ReferenceSortedMap<V>
Double2ReferenceSortedMaps.singleton(double key, V value)
          Returns a type-specific immutable sorted map containing only the specified pair.
static
<V> Double2ReferenceSortedMap<V>
Double2ReferenceSortedMaps.singleton(Double key, V value)
          Returns a type-specific immutable sorted map containing only the specified pair.
static
<V> Double2ReferenceSortedMap<V>
Double2ReferenceSortedMaps.singleton(double key, V value, DoubleComparator comparator)
          Returns a type-specific immutable sorted map containing only the specified pair.
static
<V> Double2ReferenceSortedMap<V>
Double2ReferenceSortedMaps.singleton(Double key, V value, DoubleComparator comparator)
          RETURNS a type-specific immutable sorted map containing only the specified pair.
 Double2ReferenceSortedMap<V> Double2ReferenceAVLTreeMap.subMap(double from, double to)
           
 Double2ReferenceSortedMap<V> Double2ReferenceRBTreeMap.subMap(double from, double to)
           
 Double2ReferenceSortedMap<V> Double2ReferenceSortedMap.subMap(double fromKey, double toKey)
          Returns a view of the portion of this sorted map whose keys range from fromKey, inclusive, to toKey, exclusive.
 Double2ReferenceSortedMap<V> Double2ReferenceLinkedOpenHashMap.subMap(double from, double to)
           
 Double2ReferenceSortedMap<V> Double2ReferenceSortedMaps.EmptySortedMap.subMap(double from, double to)
           
 Double2ReferenceSortedMap<V> Double2ReferenceSortedMaps.Singleton.subMap(double from, double to)
           
 Double2ReferenceSortedMap<V> Double2ReferenceSortedMaps.SynchronizedSortedMap.subMap(double from, double to)
           
 Double2ReferenceSortedMap<V> Double2ReferenceSortedMaps.UnmodifiableSortedMap.subMap(double from, double to)
           
 Double2ReferenceSortedMap<V> AbstractDouble2ReferenceSortedMap.subMap(Double from, Double to)
          Delegates to the corresponding type-specific method.
 Double2ReferenceSortedMap<V> Double2ReferenceSortedMap.subMap(Double fromKey, Double toKey)
          Returns a view of the portion of this sorted map whose keys range from fromKey, inclusive, to toKey, exclusive.
 Double2ReferenceSortedMap<V> Double2ReferenceSortedMaps.EmptySortedMap.subMap(Double ofrom, Double oto)
           
 Double2ReferenceSortedMap<V> Double2ReferenceSortedMaps.Singleton.subMap(Double ofrom, Double oto)
           
 Double2ReferenceSortedMap<V> Double2ReferenceSortedMaps.SynchronizedSortedMap.subMap(Double from, Double to)
           
 Double2ReferenceSortedMap<V> Double2ReferenceSortedMaps.UnmodifiableSortedMap.subMap(Double from, Double to)
           
static
<V> Double2ReferenceSortedMap<V>
Double2ReferenceSortedMaps.synchronize(Double2ReferenceSortedMap<V> m)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map.
static
<V> Double2ReferenceSortedMap<V>
Double2ReferenceSortedMaps.synchronize(Double2ReferenceSortedMap<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.
 Double2ReferenceSortedMap<V> Double2ReferenceAVLTreeMap.tailMap(double from)
           
 Double2ReferenceSortedMap<V> Double2ReferenceRBTreeMap.tailMap(double from)
           
 Double2ReferenceSortedMap<V> Double2ReferenceSortedMap.tailMap(double fromKey)
          Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey.
 Double2ReferenceSortedMap<V> Double2ReferenceLinkedOpenHashMap.tailMap(double from)
           
 Double2ReferenceSortedMap<V> Double2ReferenceSortedMaps.EmptySortedMap.tailMap(double from)
           
 Double2ReferenceSortedMap<V> Double2ReferenceSortedMaps.Singleton.tailMap(double from)
           
 Double2ReferenceSortedMap<V> Double2ReferenceSortedMaps.SynchronizedSortedMap.tailMap(double from)
           
 Double2ReferenceSortedMap<V> Double2ReferenceSortedMaps.UnmodifiableSortedMap.tailMap(double from)
           
 Double2ReferenceSortedMap<V> AbstractDouble2ReferenceSortedMap.tailMap(Double from)
          Delegates to the corresponding type-specific method.
 Double2ReferenceSortedMap<V> Double2ReferenceSortedMap.tailMap(Double fromKey)
          Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey.
 Double2ReferenceSortedMap<V> Double2ReferenceSortedMaps.EmptySortedMap.tailMap(Double ofrom)
           
 Double2ReferenceSortedMap<V> Double2ReferenceSortedMaps.Singleton.tailMap(Double ofrom)
           
 Double2ReferenceSortedMap<V> Double2ReferenceSortedMaps.SynchronizedSortedMap.tailMap(Double from)
           
 Double2ReferenceSortedMap<V> Double2ReferenceSortedMaps.UnmodifiableSortedMap.tailMap(Double from)
           
static
<V> Double2ReferenceSortedMap<V>
Double2ReferenceSortedMaps.unmodifiable(Double2ReferenceSortedMap<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 Double2ReferenceSortedMap
static
<V> Double2ReferenceSortedMap<V>
Double2ReferenceSortedMaps.synchronize(Double2ReferenceSortedMap<V> m)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map.
static
<V> Double2ReferenceSortedMap<V>
Double2ReferenceSortedMaps.synchronize(Double2ReferenceSortedMap<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> Double2ReferenceSortedMap<V>
Double2ReferenceSortedMaps.unmodifiable(Double2ReferenceSortedMap<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 Double2ReferenceSortedMap
Double2ReferenceAVLTreeMap(Double2ReferenceSortedMap<V> m)
          Creates a new tree map copying a given sorted map (and its Comparator).
Double2ReferenceRBTreeMap(Double2ReferenceSortedMap<V> m)
          Creates a new tree map copying a given sorted map (and its Comparator).
Double2ReferenceSortedMaps.SynchronizedSortedMap(Double2ReferenceSortedMap<V> m)
           
Double2ReferenceSortedMaps.SynchronizedSortedMap(Double2ReferenceSortedMap<V> m, Object sync)
           
Double2ReferenceSortedMaps.UnmodifiableSortedMap(Double2ReferenceSortedMap<V> m)
           
 



Copyright © 2011. All Rights Reserved.