Uses of Interface
it.unimi.dsi.fastutil.chars.Char2FloatSortedMap

Packages that use Char2FloatSortedMap
it.unimi.dsi.fastutil.chars Provides type-specific classes for character elements or keys. 
 

Uses of Char2FloatSortedMap in it.unimi.dsi.fastutil.chars
 

Classes in it.unimi.dsi.fastutil.chars that implement Char2FloatSortedMap
 class AbstractChar2FloatSortedMap
          An abstract class providing basic methods for sorted maps implementing a type-specific interface.
 class Char2FloatAVLTreeMap
          A type-specific AVL tree map with a fast, small-footprint implementation.
 class Char2FloatLinkedOpenHashMap
          A type-specific linked hash map with with a fast, small-footprint implementation.
 class Char2FloatRBTreeMap
          A type-specific red-black tree map with a fast, small-footprint implementation.
static class Char2FloatSortedMaps.EmptySortedMap
          An immutable class representing an empty type-specific sorted map.
static class Char2FloatSortedMaps.Singleton
          An immutable class representing a type-specific singleton sorted map.
static class Char2FloatSortedMaps.SynchronizedSortedMap
          A synchronized wrapper class for sorted maps.
static class Char2FloatSortedMaps.UnmodifiableSortedMap
          An unmodifiable wrapper class for sorted maps.
 

Fields in it.unimi.dsi.fastutil.chars declared as Char2FloatSortedMap
protected  Char2FloatSortedMap Char2FloatSortedMaps.SynchronizedSortedMap.sortedMap
           
protected  Char2FloatSortedMap Char2FloatSortedMaps.UnmodifiableSortedMap.sortedMap
           
 

Methods in it.unimi.dsi.fastutil.chars that return Char2FloatSortedMap
 Char2FloatSortedMap Char2FloatLinkedOpenHashMap.headMap(char to)
           
 Char2FloatSortedMap Char2FloatSortedMap.headMap(char toKey)
          Returns a view of the portion of this sorted map whose keys are strictly less than toKey.
 Char2FloatSortedMap Char2FloatRBTreeMap.headMap(char to)
           
 Char2FloatSortedMap Char2FloatAVLTreeMap.headMap(char to)
           
 Char2FloatSortedMap Char2FloatSortedMaps.EmptySortedMap.headMap(char to)
           
 Char2FloatSortedMap Char2FloatSortedMaps.Singleton.headMap(char to)
           
 Char2FloatSortedMap Char2FloatSortedMaps.SynchronizedSortedMap.headMap(char to)
           
 Char2FloatSortedMap Char2FloatSortedMaps.UnmodifiableSortedMap.headMap(char to)
           
 Char2FloatSortedMap AbstractChar2FloatSortedMap.headMap(Character to)
          Delegates to the corresponding type-specific method.
 Char2FloatSortedMap Char2FloatSortedMap.headMap(Character toKey)
          Returns a view of the portion of this sorted map whose keys are strictly less than toKey.
 Char2FloatSortedMap Char2FloatSortedMaps.EmptySortedMap.headMap(Character oto)
           
 Char2FloatSortedMap Char2FloatSortedMaps.Singleton.headMap(Character oto)
           
 Char2FloatSortedMap Char2FloatSortedMaps.SynchronizedSortedMap.headMap(Character to)
           
 Char2FloatSortedMap Char2FloatSortedMaps.UnmodifiableSortedMap.headMap(Character to)
           
static Char2FloatSortedMap Char2FloatSortedMaps.singleton(Character key, Float value)
          Returns a type-specific immutable sorted map containing only the specified pair.
static Char2FloatSortedMap Char2FloatSortedMaps.singleton(Character key, Float value, CharComparator comparator)
          RETURNS a type-specific immutable sorted map containing only the specified pair.
static Char2FloatSortedMap Char2FloatSortedMaps.singleton(char key, float value)
          Returns a type-specific immutable sorted map containing only the specified pair.
static Char2FloatSortedMap Char2FloatSortedMaps.singleton(char key, float value, CharComparator comparator)
          Returns a type-specific immutable sorted map containing only the specified pair.
 Char2FloatSortedMap AbstractChar2FloatSortedMap.subMap(Character from, Character to)
          Delegates to the corresponding type-specific method.
 Char2FloatSortedMap Char2FloatSortedMap.subMap(Character fromKey, Character toKey)
          Returns a view of the portion of this sorted map whose keys range from fromKey, inclusive, to toKey, exclusive.
 Char2FloatSortedMap Char2FloatSortedMaps.EmptySortedMap.subMap(Character ofrom, Character oto)
           
 Char2FloatSortedMap Char2FloatSortedMaps.Singleton.subMap(Character ofrom, Character oto)
           
 Char2FloatSortedMap Char2FloatSortedMaps.SynchronizedSortedMap.subMap(Character from, Character to)
           
 Char2FloatSortedMap Char2FloatSortedMaps.UnmodifiableSortedMap.subMap(Character from, Character to)
           
 Char2FloatSortedMap Char2FloatLinkedOpenHashMap.subMap(char from, char to)
           
 Char2FloatSortedMap Char2FloatSortedMap.subMap(char fromKey, char toKey)
          Returns a view of the portion of this sorted map whose keys range from fromKey, inclusive, to toKey, exclusive.
 Char2FloatSortedMap Char2FloatRBTreeMap.subMap(char from, char to)
           
 Char2FloatSortedMap Char2FloatAVLTreeMap.subMap(char from, char to)
           
 Char2FloatSortedMap Char2FloatSortedMaps.EmptySortedMap.subMap(char from, char to)
           
 Char2FloatSortedMap Char2FloatSortedMaps.Singleton.subMap(char from, char to)
           
 Char2FloatSortedMap Char2FloatSortedMaps.SynchronizedSortedMap.subMap(char from, char to)
           
 Char2FloatSortedMap Char2FloatSortedMaps.UnmodifiableSortedMap.subMap(char from, char to)
           
static Char2FloatSortedMap Char2FloatSortedMaps.synchronize(Char2FloatSortedMap m)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map.
static Char2FloatSortedMap Char2FloatSortedMaps.synchronize(Char2FloatSortedMap m, Object sync)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map, using an assigned object to synchronize.
 Char2FloatSortedMap Char2FloatLinkedOpenHashMap.tailMap(char from)
           
 Char2FloatSortedMap Char2FloatSortedMap.tailMap(char fromKey)
          Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey.
 Char2FloatSortedMap Char2FloatRBTreeMap.tailMap(char from)
           
 Char2FloatSortedMap Char2FloatAVLTreeMap.tailMap(char from)
           
 Char2FloatSortedMap Char2FloatSortedMaps.EmptySortedMap.tailMap(char from)
           
 Char2FloatSortedMap Char2FloatSortedMaps.Singleton.tailMap(char from)
           
 Char2FloatSortedMap Char2FloatSortedMaps.SynchronizedSortedMap.tailMap(char from)
           
 Char2FloatSortedMap Char2FloatSortedMaps.UnmodifiableSortedMap.tailMap(char from)
           
 Char2FloatSortedMap AbstractChar2FloatSortedMap.tailMap(Character from)
          Delegates to the corresponding type-specific method.
 Char2FloatSortedMap Char2FloatSortedMap.tailMap(Character fromKey)
          Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey.
 Char2FloatSortedMap Char2FloatSortedMaps.EmptySortedMap.tailMap(Character ofrom)
           
 Char2FloatSortedMap Char2FloatSortedMaps.Singleton.tailMap(Character ofrom)
           
 Char2FloatSortedMap Char2FloatSortedMaps.SynchronizedSortedMap.tailMap(Character from)
           
 Char2FloatSortedMap Char2FloatSortedMaps.UnmodifiableSortedMap.tailMap(Character from)
           
static Char2FloatSortedMap Char2FloatSortedMaps.unmodifiable(Char2FloatSortedMap m)
          Returns an unmodifiable type-specific sorted map backed by the given type-specific sorted map.
 

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

Constructors in it.unimi.dsi.fastutil.chars with parameters of type Char2FloatSortedMap
Char2FloatAVLTreeMap(Char2FloatSortedMap m)
          Creates a new tree map copying a given sorted map (and its Comparator).
Char2FloatRBTreeMap(Char2FloatSortedMap m)
          Creates a new tree map copying a given sorted map (and its Comparator).
Char2FloatSortedMaps.SynchronizedSortedMap(Char2FloatSortedMap m)
           
Char2FloatSortedMaps.SynchronizedSortedMap(Char2FloatSortedMap m, Object sync)
           
Char2FloatSortedMaps.UnmodifiableSortedMap(Char2FloatSortedMap m)
           
 



Copyright © 2011. All Rights Reserved.