Uses of Interface
it.unimi.dsi.fastutil.shorts.Short2BooleanSortedMap

Packages that use Short2BooleanSortedMap
it.unimi.dsi.fastutil.shorts Provides type-specific classes for short elements or keys. 
 

Uses of Short2BooleanSortedMap in it.unimi.dsi.fastutil.shorts
 

Classes in it.unimi.dsi.fastutil.shorts that implement Short2BooleanSortedMap
 class AbstractShort2BooleanSortedMap
          An abstract class providing basic methods for sorted maps implementing a type-specific interface.
 class Short2BooleanAVLTreeMap
          A type-specific AVL tree map with a fast, small-footprint implementation.
 class Short2BooleanLinkedOpenHashMap
          A type-specific linked hash map with with a fast, small-footprint implementation.
 class Short2BooleanRBTreeMap
          A type-specific red-black tree map with a fast, small-footprint implementation.
static class Short2BooleanSortedMaps.EmptySortedMap
          An immutable class representing an empty type-specific sorted map.
static class Short2BooleanSortedMaps.Singleton
          An immutable class representing a type-specific singleton sorted map.
static class Short2BooleanSortedMaps.SynchronizedSortedMap
          A synchronized wrapper class for sorted maps.
static class Short2BooleanSortedMaps.UnmodifiableSortedMap
          An unmodifiable wrapper class for sorted maps.
 

Fields in it.unimi.dsi.fastutil.shorts declared as Short2BooleanSortedMap
protected  Short2BooleanSortedMap Short2BooleanSortedMaps.SynchronizedSortedMap.sortedMap
           
protected  Short2BooleanSortedMap Short2BooleanSortedMaps.UnmodifiableSortedMap.sortedMap
           
 

Methods in it.unimi.dsi.fastutil.shorts that return Short2BooleanSortedMap
 Short2BooleanSortedMap Short2BooleanSortedMaps.EmptySortedMap.headMap(short to)
           
 Short2BooleanSortedMap Short2BooleanSortedMaps.Singleton.headMap(short to)
           
 Short2BooleanSortedMap Short2BooleanSortedMaps.SynchronizedSortedMap.headMap(short to)
           
 Short2BooleanSortedMap Short2BooleanSortedMaps.UnmodifiableSortedMap.headMap(short to)
           
 Short2BooleanSortedMap Short2BooleanSortedMap.headMap(short toKey)
          Returns a view of the portion of this sorted map whose keys are strictly less than toKey.
 Short2BooleanSortedMap Short2BooleanRBTreeMap.headMap(short to)
           
 Short2BooleanSortedMap Short2BooleanAVLTreeMap.headMap(short to)
           
 Short2BooleanSortedMap Short2BooleanLinkedOpenHashMap.headMap(short to)
           
 Short2BooleanSortedMap Short2BooleanSortedMaps.EmptySortedMap.headMap(Short oto)
           
 Short2BooleanSortedMap Short2BooleanSortedMaps.Singleton.headMap(Short oto)
           
 Short2BooleanSortedMap Short2BooleanSortedMaps.SynchronizedSortedMap.headMap(Short to)
           
 Short2BooleanSortedMap Short2BooleanSortedMaps.UnmodifiableSortedMap.headMap(Short to)
           
 Short2BooleanSortedMap AbstractShort2BooleanSortedMap.headMap(Short to)
          Delegates to the corresponding type-specific method.
 Short2BooleanSortedMap Short2BooleanSortedMap.headMap(Short toKey)
          Returns a view of the portion of this sorted map whose keys are strictly less than toKey.
static Short2BooleanSortedMap Short2BooleanSortedMaps.singleton(short key, boolean value)
          Returns a type-specific immutable sorted map containing only the specified pair.
static Short2BooleanSortedMap Short2BooleanSortedMaps.singleton(Short key, Boolean value)
          Returns a type-specific immutable sorted map containing only the specified pair.
static Short2BooleanSortedMap Short2BooleanSortedMaps.singleton(short key, boolean value, ShortComparator comparator)
          Returns a type-specific immutable sorted map containing only the specified pair.
static Short2BooleanSortedMap Short2BooleanSortedMaps.singleton(Short key, Boolean value, ShortComparator comparator)
          RETURNS a type-specific immutable sorted map containing only the specified pair.
 Short2BooleanSortedMap Short2BooleanSortedMaps.EmptySortedMap.subMap(short from, short to)
           
 Short2BooleanSortedMap Short2BooleanSortedMaps.Singleton.subMap(short from, short to)
           
 Short2BooleanSortedMap Short2BooleanSortedMaps.SynchronizedSortedMap.subMap(short from, short to)
           
 Short2BooleanSortedMap Short2BooleanSortedMaps.UnmodifiableSortedMap.subMap(short from, short to)
           
 Short2BooleanSortedMap Short2BooleanSortedMap.subMap(short fromKey, short toKey)
          Returns a view of the portion of this sorted map whose keys range from fromKey, inclusive, to toKey, exclusive.
 Short2BooleanSortedMap Short2BooleanRBTreeMap.subMap(short from, short to)
           
 Short2BooleanSortedMap Short2BooleanAVLTreeMap.subMap(short from, short to)
           
 Short2BooleanSortedMap Short2BooleanLinkedOpenHashMap.subMap(short from, short to)
           
 Short2BooleanSortedMap Short2BooleanSortedMaps.EmptySortedMap.subMap(Short ofrom, Short oto)
           
 Short2BooleanSortedMap Short2BooleanSortedMaps.Singleton.subMap(Short ofrom, Short oto)
           
 Short2BooleanSortedMap Short2BooleanSortedMaps.SynchronizedSortedMap.subMap(Short from, Short to)
           
 Short2BooleanSortedMap Short2BooleanSortedMaps.UnmodifiableSortedMap.subMap(Short from, Short to)
           
 Short2BooleanSortedMap AbstractShort2BooleanSortedMap.subMap(Short from, Short to)
          Delegates to the corresponding type-specific method.
 Short2BooleanSortedMap Short2BooleanSortedMap.subMap(Short fromKey, Short toKey)
          Returns a view of the portion of this sorted map whose keys range from fromKey, inclusive, to toKey, exclusive.
static Short2BooleanSortedMap Short2BooleanSortedMaps.synchronize(Short2BooleanSortedMap m)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map.
static Short2BooleanSortedMap Short2BooleanSortedMaps.synchronize(Short2BooleanSortedMap m, Object sync)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map, using an assigned object to synchronize.
 Short2BooleanSortedMap Short2BooleanSortedMaps.EmptySortedMap.tailMap(short from)
           
 Short2BooleanSortedMap Short2BooleanSortedMaps.Singleton.tailMap(short from)
           
 Short2BooleanSortedMap Short2BooleanSortedMaps.SynchronizedSortedMap.tailMap(short from)
           
 Short2BooleanSortedMap Short2BooleanSortedMaps.UnmodifiableSortedMap.tailMap(short from)
           
 Short2BooleanSortedMap Short2BooleanSortedMap.tailMap(short fromKey)
          Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey.
 Short2BooleanSortedMap Short2BooleanRBTreeMap.tailMap(short from)
           
 Short2BooleanSortedMap Short2BooleanAVLTreeMap.tailMap(short from)
           
 Short2BooleanSortedMap Short2BooleanLinkedOpenHashMap.tailMap(short from)
           
 Short2BooleanSortedMap Short2BooleanSortedMaps.EmptySortedMap.tailMap(Short ofrom)
           
 Short2BooleanSortedMap Short2BooleanSortedMaps.Singleton.tailMap(Short ofrom)
           
 Short2BooleanSortedMap Short2BooleanSortedMaps.SynchronizedSortedMap.tailMap(Short from)
           
 Short2BooleanSortedMap Short2BooleanSortedMaps.UnmodifiableSortedMap.tailMap(Short from)
           
 Short2BooleanSortedMap AbstractShort2BooleanSortedMap.tailMap(Short from)
          Delegates to the corresponding type-specific method.
 Short2BooleanSortedMap Short2BooleanSortedMap.tailMap(Short fromKey)
          Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey.
static Short2BooleanSortedMap Short2BooleanSortedMaps.unmodifiable(Short2BooleanSortedMap m)
          Returns an unmodifiable type-specific sorted map backed by the given type-specific sorted map.
 

Methods in it.unimi.dsi.fastutil.shorts with parameters of type Short2BooleanSortedMap
static Short2BooleanSortedMap Short2BooleanSortedMaps.synchronize(Short2BooleanSortedMap m)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map.
static Short2BooleanSortedMap Short2BooleanSortedMaps.synchronize(Short2BooleanSortedMap 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 Short2BooleanSortedMap Short2BooleanSortedMaps.unmodifiable(Short2BooleanSortedMap m)
          Returns an unmodifiable type-specific sorted map backed by the given type-specific sorted map.
 

Constructors in it.unimi.dsi.fastutil.shorts with parameters of type Short2BooleanSortedMap
Short2BooleanAVLTreeMap(Short2BooleanSortedMap m)
          Creates a new tree map copying a given sorted map (and its Comparator).
Short2BooleanRBTreeMap(Short2BooleanSortedMap m)
          Creates a new tree map copying a given sorted map (and its Comparator).
Short2BooleanSortedMaps.SynchronizedSortedMap(Short2BooleanSortedMap m)
           
Short2BooleanSortedMaps.SynchronizedSortedMap(Short2BooleanSortedMap m, Object sync)
           
Short2BooleanSortedMaps.UnmodifiableSortedMap(Short2BooleanSortedMap m)
           
 



Copyright © 2011. All Rights Reserved.