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

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

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

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

Fields in it.unimi.dsi.fastutil.chars declared as Char2IntSortedMap
protected  Char2IntSortedMap Char2IntSortedMaps.SynchronizedSortedMap.sortedMap
           
protected  Char2IntSortedMap Char2IntSortedMaps.UnmodifiableSortedMap.sortedMap
           
 

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



Copyright © 2011. All Rights Reserved.