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

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

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

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

Fields in it.unimi.dsi.fastutil.bytes declared as Byte2FloatSortedMap
protected  Byte2FloatSortedMap Byte2FloatSortedMaps.SynchronizedSortedMap.sortedMap
           
protected  Byte2FloatSortedMap Byte2FloatSortedMaps.UnmodifiableSortedMap.sortedMap
           
 

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



Copyright © 2011. All Rights Reserved.