Uses of Interface
it.unimi.dsi.fastutil.bytes.Byte2CharSortedMap

Packages that use Byte2CharSortedMap
it.unimi.dsi.fastutil.bytes Provides type-specific classes for byte elements or keys. 
 

Uses of Byte2CharSortedMap in it.unimi.dsi.fastutil.bytes
 

Classes in it.unimi.dsi.fastutil.bytes that implement Byte2CharSortedMap
 class AbstractByte2CharSortedMap
          An abstract class providing basic methods for sorted maps implementing a type-specific interface.
 class Byte2CharAVLTreeMap
          A type-specific AVL tree map with a fast, small-footprint implementation.
 class Byte2CharLinkedOpenHashMap
          A type-specific linked hash map with with a fast, small-footprint implementation.
 class Byte2CharRBTreeMap
          A type-specific red-black tree map with a fast, small-footprint implementation.
static class Byte2CharSortedMaps.EmptySortedMap
          An immutable class representing an empty type-specific sorted map.
static class Byte2CharSortedMaps.Singleton
          An immutable class representing a type-specific singleton sorted map.
static class Byte2CharSortedMaps.SynchronizedSortedMap
          A synchronized wrapper class for sorted maps.
static class Byte2CharSortedMaps.UnmodifiableSortedMap
          An unmodifiable wrapper class for sorted maps.
 

Fields in it.unimi.dsi.fastutil.bytes declared as Byte2CharSortedMap
protected  Byte2CharSortedMap Byte2CharSortedMaps.SynchronizedSortedMap.sortedMap
           
protected  Byte2CharSortedMap Byte2CharSortedMaps.UnmodifiableSortedMap.sortedMap
           
 

Methods in it.unimi.dsi.fastutil.bytes that return Byte2CharSortedMap
 Byte2CharSortedMap Byte2CharAVLTreeMap.headMap(byte to)
           
 Byte2CharSortedMap Byte2CharSortedMap.headMap(byte toKey)
          Returns a view of the portion of this sorted map whose keys are strictly less than toKey.
 Byte2CharSortedMap Byte2CharLinkedOpenHashMap.headMap(byte to)
           
 Byte2CharSortedMap Byte2CharSortedMaps.EmptySortedMap.headMap(byte to)
           
 Byte2CharSortedMap Byte2CharSortedMaps.Singleton.headMap(byte to)
           
 Byte2CharSortedMap Byte2CharSortedMaps.SynchronizedSortedMap.headMap(byte to)
           
 Byte2CharSortedMap Byte2CharSortedMaps.UnmodifiableSortedMap.headMap(byte to)
           
 Byte2CharSortedMap Byte2CharRBTreeMap.headMap(byte to)
           
 Byte2CharSortedMap Byte2CharSortedMap.headMap(Byte toKey)
          Returns a view of the portion of this sorted map whose keys are strictly less than toKey.
 Byte2CharSortedMap AbstractByte2CharSortedMap.headMap(Byte to)
          Delegates to the corresponding type-specific method.
 Byte2CharSortedMap Byte2CharSortedMaps.EmptySortedMap.headMap(Byte oto)
           
 Byte2CharSortedMap Byte2CharSortedMaps.Singleton.headMap(Byte oto)
           
 Byte2CharSortedMap Byte2CharSortedMaps.SynchronizedSortedMap.headMap(Byte to)
           
 Byte2CharSortedMap Byte2CharSortedMaps.UnmodifiableSortedMap.headMap(Byte to)
           
static Byte2CharSortedMap Byte2CharSortedMaps.singleton(byte key, char value)
          Returns a type-specific immutable sorted map containing only the specified pair.
static Byte2CharSortedMap Byte2CharSortedMaps.singleton(Byte key, Character value)
          Returns a type-specific immutable sorted map containing only the specified pair.
static Byte2CharSortedMap Byte2CharSortedMaps.singleton(Byte key, Character value, ByteComparator comparator)
          RETURNS a type-specific immutable sorted map containing only the specified pair.
static Byte2CharSortedMap Byte2CharSortedMaps.singleton(byte key, char value, ByteComparator comparator)
          Returns a type-specific immutable sorted map containing only the specified pair.
 Byte2CharSortedMap Byte2CharAVLTreeMap.subMap(byte from, byte to)
           
 Byte2CharSortedMap Byte2CharSortedMap.subMap(byte fromKey, byte toKey)
          Returns a view of the portion of this sorted map whose keys range from fromKey, inclusive, to toKey, exclusive.
 Byte2CharSortedMap Byte2CharLinkedOpenHashMap.subMap(byte from, byte to)
           
 Byte2CharSortedMap Byte2CharSortedMaps.EmptySortedMap.subMap(byte from, byte to)
           
 Byte2CharSortedMap Byte2CharSortedMaps.Singleton.subMap(byte from, byte to)
           
 Byte2CharSortedMap Byte2CharSortedMaps.SynchronizedSortedMap.subMap(byte from, byte to)
           
 Byte2CharSortedMap Byte2CharSortedMaps.UnmodifiableSortedMap.subMap(byte from, byte to)
           
 Byte2CharSortedMap Byte2CharRBTreeMap.subMap(byte from, byte to)
           
 Byte2CharSortedMap Byte2CharSortedMap.subMap(Byte fromKey, Byte toKey)
          Returns a view of the portion of this sorted map whose keys range from fromKey, inclusive, to toKey, exclusive.
 Byte2CharSortedMap AbstractByte2CharSortedMap.subMap(Byte from, Byte to)
          Delegates to the corresponding type-specific method.
 Byte2CharSortedMap Byte2CharSortedMaps.EmptySortedMap.subMap(Byte ofrom, Byte oto)
           
 Byte2CharSortedMap Byte2CharSortedMaps.Singleton.subMap(Byte ofrom, Byte oto)
           
 Byte2CharSortedMap Byte2CharSortedMaps.SynchronizedSortedMap.subMap(Byte from, Byte to)
           
 Byte2CharSortedMap Byte2CharSortedMaps.UnmodifiableSortedMap.subMap(Byte from, Byte to)
           
static Byte2CharSortedMap Byte2CharSortedMaps.synchronize(Byte2CharSortedMap m)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map.
static Byte2CharSortedMap Byte2CharSortedMaps.synchronize(Byte2CharSortedMap m, Object sync)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map, using an assigned object to synchronize.
 Byte2CharSortedMap Byte2CharAVLTreeMap.tailMap(byte from)
           
 Byte2CharSortedMap Byte2CharSortedMap.tailMap(byte fromKey)
          Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey.
 Byte2CharSortedMap Byte2CharLinkedOpenHashMap.tailMap(byte from)
           
 Byte2CharSortedMap Byte2CharSortedMaps.EmptySortedMap.tailMap(byte from)
           
 Byte2CharSortedMap Byte2CharSortedMaps.Singleton.tailMap(byte from)
           
 Byte2CharSortedMap Byte2CharSortedMaps.SynchronizedSortedMap.tailMap(byte from)
           
 Byte2CharSortedMap Byte2CharSortedMaps.UnmodifiableSortedMap.tailMap(byte from)
           
 Byte2CharSortedMap Byte2CharRBTreeMap.tailMap(byte from)
           
 Byte2CharSortedMap Byte2CharSortedMap.tailMap(Byte fromKey)
          Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey.
 Byte2CharSortedMap AbstractByte2CharSortedMap.tailMap(Byte from)
          Delegates to the corresponding type-specific method.
 Byte2CharSortedMap Byte2CharSortedMaps.EmptySortedMap.tailMap(Byte ofrom)
           
 Byte2CharSortedMap Byte2CharSortedMaps.Singleton.tailMap(Byte ofrom)
           
 Byte2CharSortedMap Byte2CharSortedMaps.SynchronizedSortedMap.tailMap(Byte from)
           
 Byte2CharSortedMap Byte2CharSortedMaps.UnmodifiableSortedMap.tailMap(Byte from)
           
static Byte2CharSortedMap Byte2CharSortedMaps.unmodifiable(Byte2CharSortedMap m)
          Returns an unmodifiable type-specific sorted map backed by the given type-specific sorted map.
 

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

Constructors in it.unimi.dsi.fastutil.bytes with parameters of type Byte2CharSortedMap
Byte2CharAVLTreeMap(Byte2CharSortedMap m)
          Creates a new tree map copying a given sorted map (and its Comparator).
Byte2CharRBTreeMap(Byte2CharSortedMap m)
          Creates a new tree map copying a given sorted map (and its Comparator).
Byte2CharSortedMaps.SynchronizedSortedMap(Byte2CharSortedMap m)
           
Byte2CharSortedMaps.SynchronizedSortedMap(Byte2CharSortedMap m, Object sync)
           
Byte2CharSortedMaps.UnmodifiableSortedMap(Byte2CharSortedMap m)
           
 



Copyright © 2011. All Rights Reserved.