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

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

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

Classes in it.unimi.dsi.fastutil.bytes that implement Byte2ObjectSortedMap
 class AbstractByte2ObjectSortedMap<V>
          An abstract class providing basic methods for sorted maps implementing a type-specific interface.
 class Byte2ObjectAVLTreeMap<V>
          A type-specific AVL tree map with a fast, small-footprint implementation.
 class Byte2ObjectLinkedOpenHashMap<V>
          A type-specific linked hash map with with a fast, small-footprint implementation.
 class Byte2ObjectRBTreeMap<V>
          A type-specific red-black tree map with a fast, small-footprint implementation.
static class Byte2ObjectSortedMaps.EmptySortedMap<V>
          An immutable class representing an empty type-specific sorted map.
static class Byte2ObjectSortedMaps.Singleton<V>
          An immutable class representing a type-specific singleton sorted map.
static class Byte2ObjectSortedMaps.SynchronizedSortedMap<V>
          A synchronized wrapper class for sorted maps.
static class Byte2ObjectSortedMaps.UnmodifiableSortedMap<V>
          An unmodifiable wrapper class for sorted maps.
 

Fields in it.unimi.dsi.fastutil.bytes declared as Byte2ObjectSortedMap
protected  Byte2ObjectSortedMap<V> Byte2ObjectSortedMaps.SynchronizedSortedMap.sortedMap
           
protected  Byte2ObjectSortedMap<V> Byte2ObjectSortedMaps.UnmodifiableSortedMap.sortedMap
           
 

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



Copyright © 2011. All Rights Reserved.