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

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

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

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

Fields in it.unimi.dsi.fastutil.chars declared as Char2ShortSortedMap
protected  Char2ShortSortedMap Char2ShortSortedMaps.SynchronizedSortedMap.sortedMap
           
protected  Char2ShortSortedMap Char2ShortSortedMaps.UnmodifiableSortedMap.sortedMap
           
 

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



Copyright © 2011. All Rights Reserved.