Uses of Interface
it.unimi.dsi.fastutil.longs.Long2CharSortedMap

Packages that use Long2CharSortedMap
it.unimi.dsi.fastutil.longs Provides type-specific classes for long elements or keys. 
 

Uses of Long2CharSortedMap in it.unimi.dsi.fastutil.longs
 

Classes in it.unimi.dsi.fastutil.longs that implement Long2CharSortedMap
 class AbstractLong2CharSortedMap
          An abstract class providing basic methods for sorted maps implementing a type-specific interface.
 class Long2CharAVLTreeMap
          A type-specific AVL tree map with a fast, small-footprint implementation.
 class Long2CharLinkedOpenHashMap
          A type-specific linked hash map with with a fast, small-footprint implementation.
 class Long2CharRBTreeMap
          A type-specific red-black tree map with a fast, small-footprint implementation.
static class Long2CharSortedMaps.EmptySortedMap
          An immutable class representing an empty type-specific sorted map.
static class Long2CharSortedMaps.Singleton
          An immutable class representing a type-specific singleton sorted map.
static class Long2CharSortedMaps.SynchronizedSortedMap
          A synchronized wrapper class for sorted maps.
static class Long2CharSortedMaps.UnmodifiableSortedMap
          An unmodifiable wrapper class for sorted maps.
 

Fields in it.unimi.dsi.fastutil.longs declared as Long2CharSortedMap
protected  Long2CharSortedMap Long2CharSortedMaps.SynchronizedSortedMap.sortedMap
           
protected  Long2CharSortedMap Long2CharSortedMaps.UnmodifiableSortedMap.sortedMap
           
 

Methods in it.unimi.dsi.fastutil.longs that return Long2CharSortedMap
 Long2CharSortedMap Long2CharLinkedOpenHashMap.headMap(long to)
           
 Long2CharSortedMap Long2CharRBTreeMap.headMap(long to)
           
 Long2CharSortedMap Long2CharSortedMaps.EmptySortedMap.headMap(long to)
           
 Long2CharSortedMap Long2CharSortedMaps.Singleton.headMap(long to)
           
 Long2CharSortedMap Long2CharSortedMaps.SynchronizedSortedMap.headMap(long to)
           
 Long2CharSortedMap Long2CharSortedMaps.UnmodifiableSortedMap.headMap(long to)
           
 Long2CharSortedMap Long2CharSortedMap.headMap(long toKey)
          Returns a view of the portion of this sorted map whose keys are strictly less than toKey.
 Long2CharSortedMap Long2CharAVLTreeMap.headMap(long to)
           
 Long2CharSortedMap Long2CharSortedMaps.EmptySortedMap.headMap(Long oto)
           
 Long2CharSortedMap Long2CharSortedMaps.Singleton.headMap(Long oto)
           
 Long2CharSortedMap Long2CharSortedMaps.SynchronizedSortedMap.headMap(Long to)
           
 Long2CharSortedMap Long2CharSortedMaps.UnmodifiableSortedMap.headMap(Long to)
           
 Long2CharSortedMap Long2CharSortedMap.headMap(Long toKey)
          Returns a view of the portion of this sorted map whose keys are strictly less than toKey.
 Long2CharSortedMap AbstractLong2CharSortedMap.headMap(Long to)
          Delegates to the corresponding type-specific method.
static Long2CharSortedMap Long2CharSortedMaps.singleton(long key, char value)
          Returns a type-specific immutable sorted map containing only the specified pair.
static Long2CharSortedMap Long2CharSortedMaps.singleton(Long key, Character value)
          Returns a type-specific immutable sorted map containing only the specified pair.
static Long2CharSortedMap Long2CharSortedMaps.singleton(Long key, Character value, LongComparator comparator)
          RETURNS a type-specific immutable sorted map containing only the specified pair.
static Long2CharSortedMap Long2CharSortedMaps.singleton(long key, char value, LongComparator comparator)
          Returns a type-specific immutable sorted map containing only the specified pair.
 Long2CharSortedMap Long2CharLinkedOpenHashMap.subMap(long from, long to)
           
 Long2CharSortedMap Long2CharRBTreeMap.subMap(long from, long to)
           
 Long2CharSortedMap Long2CharSortedMaps.EmptySortedMap.subMap(long from, long to)
           
 Long2CharSortedMap Long2CharSortedMaps.Singleton.subMap(long from, long to)
           
 Long2CharSortedMap Long2CharSortedMaps.SynchronizedSortedMap.subMap(long from, long to)
           
 Long2CharSortedMap Long2CharSortedMaps.UnmodifiableSortedMap.subMap(long from, long to)
           
 Long2CharSortedMap Long2CharSortedMap.subMap(long fromKey, long toKey)
          Returns a view of the portion of this sorted map whose keys range from fromKey, inclusive, to toKey, exclusive.
 Long2CharSortedMap Long2CharAVLTreeMap.subMap(long from, long to)
           
 Long2CharSortedMap Long2CharSortedMaps.EmptySortedMap.subMap(Long ofrom, Long oto)
           
 Long2CharSortedMap Long2CharSortedMaps.Singleton.subMap(Long ofrom, Long oto)
           
 Long2CharSortedMap Long2CharSortedMaps.SynchronizedSortedMap.subMap(Long from, Long to)
           
 Long2CharSortedMap Long2CharSortedMaps.UnmodifiableSortedMap.subMap(Long from, Long to)
           
 Long2CharSortedMap Long2CharSortedMap.subMap(Long fromKey, Long toKey)
          Returns a view of the portion of this sorted map whose keys range from fromKey, inclusive, to toKey, exclusive.
 Long2CharSortedMap AbstractLong2CharSortedMap.subMap(Long from, Long to)
          Delegates to the corresponding type-specific method.
static Long2CharSortedMap Long2CharSortedMaps.synchronize(Long2CharSortedMap m)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map.
static Long2CharSortedMap Long2CharSortedMaps.synchronize(Long2CharSortedMap m, Object sync)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map, using an assigned object to synchronize.
 Long2CharSortedMap Long2CharLinkedOpenHashMap.tailMap(long from)
           
 Long2CharSortedMap Long2CharRBTreeMap.tailMap(long from)
           
 Long2CharSortedMap Long2CharSortedMaps.EmptySortedMap.tailMap(long from)
           
 Long2CharSortedMap Long2CharSortedMaps.Singleton.tailMap(long from)
           
 Long2CharSortedMap Long2CharSortedMaps.SynchronizedSortedMap.tailMap(long from)
           
 Long2CharSortedMap Long2CharSortedMaps.UnmodifiableSortedMap.tailMap(long from)
           
 Long2CharSortedMap Long2CharSortedMap.tailMap(long fromKey)
          Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey.
 Long2CharSortedMap Long2CharAVLTreeMap.tailMap(long from)
           
 Long2CharSortedMap Long2CharSortedMaps.EmptySortedMap.tailMap(Long ofrom)
           
 Long2CharSortedMap Long2CharSortedMaps.Singleton.tailMap(Long ofrom)
           
 Long2CharSortedMap Long2CharSortedMaps.SynchronizedSortedMap.tailMap(Long from)
           
 Long2CharSortedMap Long2CharSortedMaps.UnmodifiableSortedMap.tailMap(Long from)
           
 Long2CharSortedMap Long2CharSortedMap.tailMap(Long fromKey)
          Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey.
 Long2CharSortedMap AbstractLong2CharSortedMap.tailMap(Long from)
          Delegates to the corresponding type-specific method.
static Long2CharSortedMap Long2CharSortedMaps.unmodifiable(Long2CharSortedMap m)
          Returns an unmodifiable type-specific sorted map backed by the given type-specific sorted map.
 

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

Constructors in it.unimi.dsi.fastutil.longs with parameters of type Long2CharSortedMap
Long2CharAVLTreeMap(Long2CharSortedMap m)
          Creates a new tree map copying a given sorted map (and its Comparator).
Long2CharRBTreeMap(Long2CharSortedMap m)
          Creates a new tree map copying a given sorted map (and its Comparator).
Long2CharSortedMaps.SynchronizedSortedMap(Long2CharSortedMap m)
           
Long2CharSortedMaps.SynchronizedSortedMap(Long2CharSortedMap m, Object sync)
           
Long2CharSortedMaps.UnmodifiableSortedMap(Long2CharSortedMap m)
           
 



Copyright © 2011. All Rights Reserved.