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

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

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

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

Fields in it.unimi.dsi.fastutil.bytes declared as Byte2ByteSortedMap
protected  Byte2ByteSortedMap Byte2ByteSortedMaps.SynchronizedSortedMap.sortedMap
           
protected  Byte2ByteSortedMap Byte2ByteSortedMaps.UnmodifiableSortedMap.sortedMap
           
 

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



Copyright © 2011. All Rights Reserved.