Uses of Class
com.devexperts.util.Indexer

Packages that use Indexer
com.devexperts.util General utility classes. 
 

Uses of Indexer in com.devexperts.util
 

Subclasses of Indexer in com.devexperts.util
 class IdentityIndexer<K,V>
          A subclass of Indexer that distinguishes and identifies elements using identity comparison of object keys.
 class NumberKeyIndexer<V>
          A subclass of Indexer that distinguishes and identifies elements using number keys.
 

Fields in com.devexperts.util declared as Indexer
static Indexer Indexer.DEFAULT
          Default strategy that treats values as their own keys (key == value) and delegates to Object.hashCode() and Object.equals(Object) methods as appropriate.
 

Methods in com.devexperts.util that return Indexer
 Indexer<K,? super V> IndexedSet.getIndexer()
          Returns indexer used to distinguish and identify elements in this set.
 Indexer<K,? super V> IndexedMap.getIndexer()
          Returns indexer used to distinguish and identify elements in this map.
 

Constructors in com.devexperts.util with parameters of type Indexer
IndexedMap(Indexer<K,? super V> indexer)
          Creates new empty map with specified indexer and default initial capacity.
IndexedMap(Indexer<K,? super V> indexer, Collection<? extends V> c)
          Creates a new map with specified indexer containing the elements in the specified collection.
IndexedMap(Indexer<K,? super V> indexer, int initial_capacity)
          Creates new empty map with specified indexer and specified initial capacity.
IndexedMap(Indexer<K,? super V> indexer, Map<? extends K,? extends V> map)
          Creates a new map with specified indexer containing the elements in the specified map.
IndexedSet(Indexer<K,? super V> indexer)
          Creates new empty set with specified indexer and default initial capacity.
IndexedSet(Indexer<K,? super V> indexer, Collection<? extends V> c)
          Creates a new set with specified indexer containing the elements in the specified collection.
IndexedSet(Indexer<K,? super V> indexer, int initial_capacity)
          Creates new empty set with specified indexer and specified initial capacity.
SynchronizedIndexedSet(Indexer<K,? super V> indexer)
          Creates new empty set with specified indexer and default initial capacity.
SynchronizedIndexedSet(Indexer<K,? super V> indexer, Collection<? extends V> c)
          Creates a new set with specified indexer containing the elements in the specified collection.
SynchronizedIndexedSet(Indexer<K,? super V> indexer, int initial_capacity)
          Creates new empty set with specified indexer and specified initial capacity.
 



Copyright © 2013 Devexperts. All Rights Reserved.