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

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

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

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

Fields in it.unimi.dsi.fastutil.chars declared as Char2ByteSortedMap
protected  Char2ByteSortedMap Char2ByteSortedMaps.SynchronizedSortedMap.sortedMap
           
protected  Char2ByteSortedMap Char2ByteSortedMaps.UnmodifiableSortedMap.sortedMap
           
 

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



Copyright © 2011. All Rights Reserved.