Uses of Interface
it.unimi.dsi.fastutil.chars.Char2BooleanSortedMap

Packages that use Char2BooleanSortedMap
it.unimi.dsi.fastutil.chars Provides type-specific classes for character elements or keys. 
 

Uses of Char2BooleanSortedMap in it.unimi.dsi.fastutil.chars
 

Classes in it.unimi.dsi.fastutil.chars that implement Char2BooleanSortedMap
 class AbstractChar2BooleanSortedMap
          An abstract class providing basic methods for sorted maps implementing a type-specific interface.
 class Char2BooleanAVLTreeMap
          A type-specific AVL tree map with a fast, small-footprint implementation.
 class Char2BooleanLinkedOpenHashMap
          A type-specific linked hash map with with a fast, small-footprint implementation.
 class Char2BooleanRBTreeMap
          A type-specific red-black tree map with a fast, small-footprint implementation.
static class Char2BooleanSortedMaps.EmptySortedMap
          An immutable class representing an empty type-specific sorted map.
static class Char2BooleanSortedMaps.Singleton
          An immutable class representing a type-specific singleton sorted map.
static class Char2BooleanSortedMaps.SynchronizedSortedMap
          A synchronized wrapper class for sorted maps.
static class Char2BooleanSortedMaps.UnmodifiableSortedMap
          An unmodifiable wrapper class for sorted maps.
 

Fields in it.unimi.dsi.fastutil.chars declared as Char2BooleanSortedMap
protected  Char2BooleanSortedMap Char2BooleanSortedMaps.SynchronizedSortedMap.sortedMap
           
protected  Char2BooleanSortedMap Char2BooleanSortedMaps.UnmodifiableSortedMap.sortedMap
           
 

Methods in it.unimi.dsi.fastutil.chars that return Char2BooleanSortedMap
 Char2BooleanSortedMap Char2BooleanSortedMap.headMap(char toKey)
          Returns a view of the portion of this sorted map whose keys are strictly less than toKey.
 Char2BooleanSortedMap Char2BooleanRBTreeMap.headMap(char to)
           
 Char2BooleanSortedMap Char2BooleanAVLTreeMap.headMap(char to)
           
 Char2BooleanSortedMap Char2BooleanLinkedOpenHashMap.headMap(char to)
           
 Char2BooleanSortedMap Char2BooleanSortedMaps.EmptySortedMap.headMap(char to)
           
 Char2BooleanSortedMap Char2BooleanSortedMaps.Singleton.headMap(char to)
           
 Char2BooleanSortedMap Char2BooleanSortedMaps.SynchronizedSortedMap.headMap(char to)
           
 Char2BooleanSortedMap Char2BooleanSortedMaps.UnmodifiableSortedMap.headMap(char to)
           
 Char2BooleanSortedMap AbstractChar2BooleanSortedMap.headMap(Character to)
          Delegates to the corresponding type-specific method.
 Char2BooleanSortedMap Char2BooleanSortedMap.headMap(Character toKey)
          Returns a view of the portion of this sorted map whose keys are strictly less than toKey.
 Char2BooleanSortedMap Char2BooleanSortedMaps.EmptySortedMap.headMap(Character oto)
           
 Char2BooleanSortedMap Char2BooleanSortedMaps.Singleton.headMap(Character oto)
           
 Char2BooleanSortedMap Char2BooleanSortedMaps.SynchronizedSortedMap.headMap(Character to)
           
 Char2BooleanSortedMap Char2BooleanSortedMaps.UnmodifiableSortedMap.headMap(Character to)
           
static Char2BooleanSortedMap Char2BooleanSortedMaps.singleton(Character key, Boolean value)
          Returns a type-specific immutable sorted map containing only the specified pair.
static Char2BooleanSortedMap Char2BooleanSortedMaps.singleton(Character key, Boolean value, CharComparator comparator)
          RETURNS a type-specific immutable sorted map containing only the specified pair.
static Char2BooleanSortedMap Char2BooleanSortedMaps.singleton(char key, boolean value)
          Returns a type-specific immutable sorted map containing only the specified pair.
static Char2BooleanSortedMap Char2BooleanSortedMaps.singleton(char key, boolean value, CharComparator comparator)
          Returns a type-specific immutable sorted map containing only the specified pair.
 Char2BooleanSortedMap AbstractChar2BooleanSortedMap.subMap(Character from, Character to)
          Delegates to the corresponding type-specific method.
 Char2BooleanSortedMap Char2BooleanSortedMap.subMap(Character fromKey, Character toKey)
          Returns a view of the portion of this sorted map whose keys range from fromKey, inclusive, to toKey, exclusive.
 Char2BooleanSortedMap Char2BooleanSortedMaps.EmptySortedMap.subMap(Character ofrom, Character oto)
           
 Char2BooleanSortedMap Char2BooleanSortedMaps.Singleton.subMap(Character ofrom, Character oto)
           
 Char2BooleanSortedMap Char2BooleanSortedMaps.SynchronizedSortedMap.subMap(Character from, Character to)
           
 Char2BooleanSortedMap Char2BooleanSortedMaps.UnmodifiableSortedMap.subMap(Character from, Character to)
           
 Char2BooleanSortedMap Char2BooleanSortedMap.subMap(char fromKey, char toKey)
          Returns a view of the portion of this sorted map whose keys range from fromKey, inclusive, to toKey, exclusive.
 Char2BooleanSortedMap Char2BooleanRBTreeMap.subMap(char from, char to)
           
 Char2BooleanSortedMap Char2BooleanAVLTreeMap.subMap(char from, char to)
           
 Char2BooleanSortedMap Char2BooleanLinkedOpenHashMap.subMap(char from, char to)
           
 Char2BooleanSortedMap Char2BooleanSortedMaps.EmptySortedMap.subMap(char from, char to)
           
 Char2BooleanSortedMap Char2BooleanSortedMaps.Singleton.subMap(char from, char to)
           
 Char2BooleanSortedMap Char2BooleanSortedMaps.SynchronizedSortedMap.subMap(char from, char to)
           
 Char2BooleanSortedMap Char2BooleanSortedMaps.UnmodifiableSortedMap.subMap(char from, char to)
           
static Char2BooleanSortedMap Char2BooleanSortedMaps.synchronize(Char2BooleanSortedMap m)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map.
static Char2BooleanSortedMap Char2BooleanSortedMaps.synchronize(Char2BooleanSortedMap m, Object sync)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map, using an assigned object to synchronize.
 Char2BooleanSortedMap Char2BooleanSortedMap.tailMap(char fromKey)
          Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey.
 Char2BooleanSortedMap Char2BooleanRBTreeMap.tailMap(char from)
           
 Char2BooleanSortedMap Char2BooleanAVLTreeMap.tailMap(char from)
           
 Char2BooleanSortedMap Char2BooleanLinkedOpenHashMap.tailMap(char from)
           
 Char2BooleanSortedMap Char2BooleanSortedMaps.EmptySortedMap.tailMap(char from)
           
 Char2BooleanSortedMap Char2BooleanSortedMaps.Singleton.tailMap(char from)
           
 Char2BooleanSortedMap Char2BooleanSortedMaps.SynchronizedSortedMap.tailMap(char from)
           
 Char2BooleanSortedMap Char2BooleanSortedMaps.UnmodifiableSortedMap.tailMap(char from)
           
 Char2BooleanSortedMap AbstractChar2BooleanSortedMap.tailMap(Character from)
          Delegates to the corresponding type-specific method.
 Char2BooleanSortedMap Char2BooleanSortedMap.tailMap(Character fromKey)
          Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey.
 Char2BooleanSortedMap Char2BooleanSortedMaps.EmptySortedMap.tailMap(Character ofrom)
           
 Char2BooleanSortedMap Char2BooleanSortedMaps.Singleton.tailMap(Character ofrom)
           
 Char2BooleanSortedMap Char2BooleanSortedMaps.SynchronizedSortedMap.tailMap(Character from)
           
 Char2BooleanSortedMap Char2BooleanSortedMaps.UnmodifiableSortedMap.tailMap(Character from)
           
static Char2BooleanSortedMap Char2BooleanSortedMaps.unmodifiable(Char2BooleanSortedMap m)
          Returns an unmodifiable type-specific sorted map backed by the given type-specific sorted map.
 

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

Constructors in it.unimi.dsi.fastutil.chars with parameters of type Char2BooleanSortedMap
Char2BooleanAVLTreeMap(Char2BooleanSortedMap m)
          Creates a new tree map copying a given sorted map (and its Comparator).
Char2BooleanRBTreeMap(Char2BooleanSortedMap m)
          Creates a new tree map copying a given sorted map (and its Comparator).
Char2BooleanSortedMaps.SynchronizedSortedMap(Char2BooleanSortedMap m)
           
Char2BooleanSortedMaps.SynchronizedSortedMap(Char2BooleanSortedMap m, Object sync)
           
Char2BooleanSortedMaps.UnmodifiableSortedMap(Char2BooleanSortedMap m)
           
 



Copyright © 2011. All Rights Reserved.