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

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

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

Classes in it.unimi.dsi.fastutil.doubles that implement Double2CharSortedMap
 class AbstractDouble2CharSortedMap
          An abstract class providing basic methods for sorted maps implementing a type-specific interface.
 class Double2CharAVLTreeMap
          A type-specific AVL tree map with a fast, small-footprint implementation.
 class Double2CharLinkedOpenHashMap
          A type-specific linked hash map with with a fast, small-footprint implementation.
 class Double2CharRBTreeMap
          A type-specific red-black tree map with a fast, small-footprint implementation.
static class Double2CharSortedMaps.EmptySortedMap
          An immutable class representing an empty type-specific sorted map.
static class Double2CharSortedMaps.Singleton
          An immutable class representing a type-specific singleton sorted map.
static class Double2CharSortedMaps.SynchronizedSortedMap
          A synchronized wrapper class for sorted maps.
static class Double2CharSortedMaps.UnmodifiableSortedMap
          An unmodifiable wrapper class for sorted maps.
 

Fields in it.unimi.dsi.fastutil.doubles declared as Double2CharSortedMap
protected  Double2CharSortedMap Double2CharSortedMaps.SynchronizedSortedMap.sortedMap
           
protected  Double2CharSortedMap Double2CharSortedMaps.UnmodifiableSortedMap.sortedMap
           
 

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



Copyright © 2011. All Rights Reserved.