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

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

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

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

Fields in it.unimi.dsi.fastutil.bytes declared as Byte2ShortSortedMap
protected  Byte2ShortSortedMap Byte2ShortSortedMaps.SynchronizedSortedMap.sortedMap
           
protected  Byte2ShortSortedMap Byte2ShortSortedMaps.UnmodifiableSortedMap.sortedMap
           
 

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



Copyright © 2011. All Rights Reserved.