Package | Description |
---|---|
com.devexperts.util |
Provides general utility classes.
|
Modifier and Type | Class and Description |
---|---|
class |
IdentityIndexer<K,V>
Deprecated.
|
static class |
IndexerFunction.DefaultIdentityKey
Default identity strategy that treats values as their own keys (key == value).
|
Modifier and Type | Field and Description |
---|---|
static IndexerFunction.IdentityKey |
IndexerFunction.DEFAULT_IDENTITY_KEY
Default strategy that treats values as their own keys (key == value) and uses object identity
to compare keys (see
IndexerFunction.IdentityKey for details). |
Modifier and Type | Method and Description |
---|---|
static <K,V> Collector<V,?,? extends SynchronizedIndexedSet<K,V>> |
SynchronizedIndexedSet.collectorIdentity(IndexerFunction.IdentityKey<K,? super V> indexer)
Returns a
Collector that accumulates the input elements into a new SynchronizedIndexedSet with specified identity indexer. |
static <K,V> Collector<V,?,? extends IndexedSet<K,V>> |
IndexedSet.collectorIdentity(IndexerFunction.IdentityKey<K,? super V> indexer)
Returns a
Collector that accumulates the input elements into a new IndexedSet with specified identity indexer. |
static <K,V> Collector<V,?,? extends IndexedMap<K,V>> |
IndexedMap.collectorIdentity(IndexerFunction.IdentityKey<K,? super V> indexer)
Returns a
Collector that accumulates the input elements into a new IndexedMap with specified identity indexer. |
static <K,V> SynchronizedIndexedSet<K,V> |
SynchronizedIndexedSet.createIdentity(IndexerFunction.IdentityKey<K,? super V> indexer)
Creates new empty set with specified identity indexer.
|
static <K,V> IndexedSet<K,V> |
IndexedSet.createIdentity(IndexerFunction.IdentityKey<K,? super V> indexer)
Creates new empty set with specified identity indexer.
|
static <K,V> IndexedMap<K,V> |
IndexedMap.createIdentity(IndexerFunction.IdentityKey<K,? super V> indexer)
Creates new empty map with specified identity indexer.
|
Copyright © 2002–2025 Devexperts LLC. All rights reserved.