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

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

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

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

Fields in it.unimi.dsi.fastutil.bytes declared as Byte2IntSortedMap
protected  Byte2IntSortedMap Byte2IntSortedMaps.SynchronizedSortedMap.sortedMap
           
protected  Byte2IntSortedMap Byte2IntSortedMaps.UnmodifiableSortedMap.sortedMap
           
 

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



Copyright © 2011. All Rights Reserved.