public final class HashBagMultimapWithHashingStrategy<K,V> extends AbstractMutableBagMultimap<K,V> implements Externalizable
| Constructor and Description |
|---|
HashBagMultimapWithHashingStrategy()
Deprecated.
Empty default constructor used for serialization. Instantiating an HashBagMultimapWithHashingStrategy with
this constructor will have a null multimapHashingStrategy, and throw NullPointerException when used.
|
HashBagMultimapWithHashingStrategy(HashBagMultimapWithHashingStrategy<K,V> multimap) |
HashBagMultimapWithHashingStrategy(org.eclipse.collections.api.block.HashingStrategy<? super K> hashingStrategy) |
HashBagMultimapWithHashingStrategy(org.eclipse.collections.api.block.HashingStrategy<? super K> hashingStrategy,
Iterable<org.eclipse.collections.api.tuple.Pair<K,V>> inputIterable) |
HashBagMultimapWithHashingStrategy(org.eclipse.collections.api.block.HashingStrategy<? super K> hashingStrategy,
org.eclipse.collections.api.multimap.Multimap<? extends K,? extends V> multimap) |
HashBagMultimapWithHashingStrategy(org.eclipse.collections.api.block.HashingStrategy<? super K> hashingStrategy,
org.eclipse.collections.api.tuple.Pair<K,V>... pairs) |
| Modifier and Type | Method and Description |
|---|---|
<V2> HashBagMultimapWithHashingStrategy<K,V2> |
collectValues(org.eclipse.collections.api.block.function.Function<? super V,? extends V2> function) |
org.eclipse.collections.api.multimap.bag.MutableBagMultimap<V,K> |
flip() |
org.eclipse.collections.api.block.HashingStrategy<? super K> |
getKeyHashingStrategy() |
HashBagMultimapWithHashingStrategy<K,V> |
newEmpty() |
static <K,V> HashBagMultimapWithHashingStrategy<K,V> |
newMultimap(HashBagMultimapWithHashingStrategy<K,V> multimap) |
static <K,V> HashBagMultimapWithHashingStrategy<K,V> |
newMultimap(org.eclipse.collections.api.block.HashingStrategy<? super K> multimapHashingStrategy) |
static <K,V> HashBagMultimapWithHashingStrategy<K,V> |
newMultimap(org.eclipse.collections.api.block.HashingStrategy<? super K> multimapHashingStrategy,
Iterable<org.eclipse.collections.api.tuple.Pair<K,V>> inputIterable) |
static <K,V> HashBagMultimapWithHashingStrategy<K,V> |
newMultimap(org.eclipse.collections.api.block.HashingStrategy<? super K> multimapHashingStrategy,
org.eclipse.collections.api.multimap.Multimap<? extends K,? extends V> multimap) |
static <K,V> HashBagMultimapWithHashingStrategy<K,V> |
newMultimap(org.eclipse.collections.api.block.HashingStrategy<? super K> multimapHashingStrategy,
org.eclipse.collections.api.tuple.Pair<K,V>... pairs) |
void |
readExternal(ObjectInput in) |
HashBagMultimapWithHashingStrategy<K,V> |
rejectKeysMultiValues(org.eclipse.collections.api.block.predicate.Predicate2<? super K,? super Iterable<V>> predicate) |
HashBagMultimapWithHashingStrategy<K,V> |
rejectKeysValues(org.eclipse.collections.api.block.predicate.Predicate2<? super K,? super V> predicate) |
HashBagMultimapWithHashingStrategy<K,V> |
selectKeysMultiValues(org.eclipse.collections.api.block.predicate.Predicate2<? super K,? super Iterable<V>> predicate) |
HashBagMultimapWithHashingStrategy<K,V> |
selectKeysValues(org.eclipse.collections.api.block.predicate.Predicate2<? super K,? super V> predicate) |
void |
writeExternal(ObjectOutput out) |
collectKeysValues, putOccurrences, toImmutable, toMutableadd, clear, get, isEmpty, put, putAll, putAll, putAllPairs, remove, removeAll, replaceValues, size, sizeDistinct, toMap, toMapcollectKeysValues, collectValues, containsKey, containsKeyAndValue, containsValue, equals, forEachKey, forEachKeyMultiValues, forEachKeyValue, forEachValue, hashCode, keyBag, keyMultiValuePairsView, keysView, keyValuePairsView, multiValuesView, notEmpty, rejectKeysMultiValues, rejectKeysValues, selectKeysMultiValues, selectKeysValues, toString, valuesViewget, removeAll, replaceValuesadd, clear, put, putAll, putAll, putAllPairs, removecollectKeysValues, collectValues, containsKey, containsKeyAndValue, containsValue, equals, forEachKey, forEachKeyMultiValues, forEachKeyValue, forEachValue, hashCode, isEmpty, keyBag, keyMultiValuePairsView, keysView, keyValuePairsView, multiValuesView, notEmpty, rejectKeysMultiValues, rejectKeysValues, selectKeysMultiValues, selectKeysValues, size, sizeDistinct, toMap, toMap, valuesView@Deprecated public HashBagMultimapWithHashingStrategy()
public HashBagMultimapWithHashingStrategy(org.eclipse.collections.api.block.HashingStrategy<? super K> hashingStrategy)
public HashBagMultimapWithHashingStrategy(HashBagMultimapWithHashingStrategy<K,V> multimap)
public HashBagMultimapWithHashingStrategy(org.eclipse.collections.api.block.HashingStrategy<? super K> hashingStrategy, org.eclipse.collections.api.multimap.Multimap<? extends K,? extends V> multimap)
public HashBagMultimapWithHashingStrategy(org.eclipse.collections.api.block.HashingStrategy<? super K> hashingStrategy, org.eclipse.collections.api.tuple.Pair<K,V>... pairs)
public static <K,V> HashBagMultimapWithHashingStrategy<K,V> newMultimap(HashBagMultimapWithHashingStrategy<K,V> multimap)
public static <K,V> HashBagMultimapWithHashingStrategy<K,V> newMultimap(org.eclipse.collections.api.block.HashingStrategy<? super K> multimapHashingStrategy, org.eclipse.collections.api.multimap.Multimap<? extends K,? extends V> multimap)
public static <K,V> HashBagMultimapWithHashingStrategy<K,V> newMultimap(org.eclipse.collections.api.block.HashingStrategy<? super K> multimapHashingStrategy)
@SafeVarargs public static <K,V> HashBagMultimapWithHashingStrategy<K,V> newMultimap(org.eclipse.collections.api.block.HashingStrategy<? super K> multimapHashingStrategy, org.eclipse.collections.api.tuple.Pair<K,V>... pairs)
public static <K,V> HashBagMultimapWithHashingStrategy<K,V> newMultimap(org.eclipse.collections.api.block.HashingStrategy<? super K> multimapHashingStrategy, Iterable<org.eclipse.collections.api.tuple.Pair<K,V>> inputIterable)
public org.eclipse.collections.api.block.HashingStrategy<? super K> getKeyHashingStrategy()
public HashBagMultimapWithHashingStrategy<K,V> newEmpty()
newEmpty in interface org.eclipse.collections.api.multimap.bag.BagMultimap<K,V>newEmpty in interface org.eclipse.collections.api.multimap.bag.MutableBagIterableMultimap<K,V>newEmpty in interface org.eclipse.collections.api.multimap.bag.MutableBagMultimap<K,V>newEmpty in interface org.eclipse.collections.api.multimap.bag.UnsortedBagMultimap<K,V>newEmpty in interface org.eclipse.collections.api.multimap.Multimap<K,V>newEmpty in interface org.eclipse.collections.api.multimap.MutableMultimap<K,V>public void writeExternal(ObjectOutput out) throws IOException
writeExternal in interface ExternalizablewriteExternal in class AbstractMutableBagMultimap<K,V>IOExceptionpublic void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
readExternal in interface ExternalizablereadExternal in class AbstractMutableBagMultimap<K,V>IOExceptionClassNotFoundExceptionpublic org.eclipse.collections.api.multimap.bag.MutableBagMultimap<V,K> flip()
flip in interface org.eclipse.collections.api.multimap.bag.BagMultimap<K,V>flip in interface org.eclipse.collections.api.multimap.bag.MutableBagIterableMultimap<K,V>flip in interface org.eclipse.collections.api.multimap.bag.MutableBagMultimap<K,V>flip in interface org.eclipse.collections.api.multimap.Multimap<K,V>flip in interface org.eclipse.collections.api.multimap.MutableMultimap<K,V>public <V2> HashBagMultimapWithHashingStrategy<K,V2> collectValues(org.eclipse.collections.api.block.function.Function<? super V,? extends V2> function)
collectValues in interface org.eclipse.collections.api.multimap.bag.MutableBagIterableMultimap<K,V>collectValues in interface org.eclipse.collections.api.multimap.bag.MutableBagMultimap<K,V>collectValues in interface org.eclipse.collections.api.multimap.bag.UnsortedBagMultimap<K,V>collectValues in interface org.eclipse.collections.api.multimap.Multimap<K,V>collectValues in interface org.eclipse.collections.api.multimap.MutableMultimap<K,V>public HashBagMultimapWithHashingStrategy<K,V> selectKeysValues(org.eclipse.collections.api.block.predicate.Predicate2<? super K,? super V> predicate)
selectKeysValues in interface org.eclipse.collections.api.multimap.bag.BagMultimap<K,V>selectKeysValues in interface org.eclipse.collections.api.multimap.bag.MutableBagIterableMultimap<K,V>selectKeysValues in interface org.eclipse.collections.api.multimap.bag.MutableBagMultimap<K,V>selectKeysValues in interface org.eclipse.collections.api.multimap.bag.UnsortedBagMultimap<K,V>selectKeysValues in interface org.eclipse.collections.api.multimap.Multimap<K,V>selectKeysValues in interface org.eclipse.collections.api.multimap.MutableMultimap<K,V>public HashBagMultimapWithHashingStrategy<K,V> rejectKeysValues(org.eclipse.collections.api.block.predicate.Predicate2<? super K,? super V> predicate)
rejectKeysValues in interface org.eclipse.collections.api.multimap.bag.BagMultimap<K,V>rejectKeysValues in interface org.eclipse.collections.api.multimap.bag.MutableBagIterableMultimap<K,V>rejectKeysValues in interface org.eclipse.collections.api.multimap.bag.MutableBagMultimap<K,V>rejectKeysValues in interface org.eclipse.collections.api.multimap.bag.UnsortedBagMultimap<K,V>rejectKeysValues in interface org.eclipse.collections.api.multimap.Multimap<K,V>rejectKeysValues in interface org.eclipse.collections.api.multimap.MutableMultimap<K,V>public HashBagMultimapWithHashingStrategy<K,V> selectKeysMultiValues(org.eclipse.collections.api.block.predicate.Predicate2<? super K,? super Iterable<V>> predicate)
selectKeysMultiValues in interface org.eclipse.collections.api.multimap.bag.BagMultimap<K,V>selectKeysMultiValues in interface org.eclipse.collections.api.multimap.bag.MutableBagIterableMultimap<K,V>selectKeysMultiValues in interface org.eclipse.collections.api.multimap.bag.MutableBagMultimap<K,V>selectKeysMultiValues in interface org.eclipse.collections.api.multimap.bag.UnsortedBagMultimap<K,V>selectKeysMultiValues in interface org.eclipse.collections.api.multimap.Multimap<K,V>selectKeysMultiValues in interface org.eclipse.collections.api.multimap.MutableMultimap<K,V>public HashBagMultimapWithHashingStrategy<K,V> rejectKeysMultiValues(org.eclipse.collections.api.block.predicate.Predicate2<? super K,? super Iterable<V>> predicate)
rejectKeysMultiValues in interface org.eclipse.collections.api.multimap.bag.BagMultimap<K,V>rejectKeysMultiValues in interface org.eclipse.collections.api.multimap.bag.MutableBagIterableMultimap<K,V>rejectKeysMultiValues in interface org.eclipse.collections.api.multimap.bag.MutableBagMultimap<K,V>rejectKeysMultiValues in interface org.eclipse.collections.api.multimap.bag.UnsortedBagMultimap<K,V>rejectKeysMultiValues in interface org.eclipse.collections.api.multimap.Multimap<K,V>rejectKeysMultiValues in interface org.eclipse.collections.api.multimap.MutableMultimap<K,V>Copyright © 2004–2017. All rights reserved.