All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.collections.impl.multimap.bag.strategy.HashBagMultimapWithHashingStrategy Maven / Gradle / Ivy

Go to download

Builds the commons-text. Requires eclipse-collections-api be built first and be excluded from any other poms requiring it.

There is a newer version: 11.1.0-r13
Show newest version
/*
 * Copyright (c) 2022 Goldman Sachs and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * and Eclipse Distribution License v. 1.0 which accompany this distribution.
 * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
 * and the Eclipse Distribution License is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 */

package org.eclipse.collections.impl.multimap.bag.strategy;

import java.io.Externalizable;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;

import org.eclipse.collections.api.RichIterable;
import org.eclipse.collections.api.bag.MutableBag;
import org.eclipse.collections.api.block.HashingStrategy;
import org.eclipse.collections.api.block.function.Function;
import org.eclipse.collections.api.block.predicate.Predicate2;
import org.eclipse.collections.api.map.MutableMap;
import org.eclipse.collections.api.multimap.Multimap;
import org.eclipse.collections.api.multimap.bag.MutableBagMultimap;
import org.eclipse.collections.api.tuple.Pair;
import org.eclipse.collections.impl.bag.mutable.HashBag;
import org.eclipse.collections.impl.map.strategy.mutable.UnifiedMapWithHashingStrategy;
import org.eclipse.collections.impl.multimap.bag.AbstractMutableBagMultimap;
import org.eclipse.collections.impl.utility.Iterate;

public final class HashBagMultimapWithHashingStrategy
        extends AbstractMutableBagMultimap implements Externalizable
{
    private static final long serialVersionUID = 1L;
    private HashingStrategy hashingStrategy;

    /**
     * @deprecated Empty default constructor used for serialization. Instantiating an HashBagMultimapWithHashingStrategy with
     * this constructor will have a null multimapHashingStrategy, and throw NullPointerException when used.
     */
    @SuppressWarnings("UnusedDeclaration")
    @Deprecated
    public HashBagMultimapWithHashingStrategy()
    {
        // For Externalizable use only
    }

    public HashBagMultimapWithHashingStrategy(HashingStrategy hashingStrategy)
    {
        this.hashingStrategy = hashingStrategy;
        this.map = this.createMap();
    }

    public HashBagMultimapWithHashingStrategy(HashBagMultimapWithHashingStrategy multimap)
    {
        this(multimap.hashingStrategy, multimap);
    }

    public HashBagMultimapWithHashingStrategy(HashingStrategy hashingStrategy, Multimap multimap)
    {
        this.hashingStrategy = hashingStrategy;
        this.map = this.createMapWithKeyCount(Math.max(multimap.sizeDistinct() * 2, 16));
        this.putAll(multimap);
    }

    public HashBagMultimapWithHashingStrategy(HashingStrategy hashingStrategy, Pair... pairs)
    {
        this(hashingStrategy);
        this.putAllPairs(pairs);
    }

    public HashBagMultimapWithHashingStrategy(HashingStrategy hashingStrategy, Iterable> inputIterable)
    {
        this(hashingStrategy);
        for (Pair single : inputIterable)
        {
            this.add(single);
        }
    }

    public static  HashBagMultimapWithHashingStrategy newMultimap(HashBagMultimapWithHashingStrategy multimap)
    {
        return new HashBagMultimapWithHashingStrategy<>(multimap);
    }

    public static  HashBagMultimapWithHashingStrategy newMultimap(HashingStrategy multimapHashingStrategy, Multimap multimap)
    {
        return new HashBagMultimapWithHashingStrategy<>(multimapHashingStrategy, multimap);
    }

    public static  HashBagMultimapWithHashingStrategy newMultimap(HashingStrategy multimapHashingStrategy)
    {
        return new HashBagMultimapWithHashingStrategy<>(multimapHashingStrategy);
    }

    @SafeVarargs
    public static  HashBagMultimapWithHashingStrategy newMultimap(HashingStrategy multimapHashingStrategy, Pair... pairs)
    {
        return new HashBagMultimapWithHashingStrategy<>(multimapHashingStrategy, pairs);
    }

    public static  HashBagMultimapWithHashingStrategy newMultimap(HashingStrategy multimapHashingStrategy, Iterable> inputIterable)
    {
        return new HashBagMultimapWithHashingStrategy<>(multimapHashingStrategy, inputIterable);
    }

    @Override
    protected MutableMap> createMap()
    {
        return UnifiedMapWithHashingStrategy.newMap(this.hashingStrategy);
    }

    @Override
    protected MutableMap> createMapWithKeyCount(int keyCount)
    {
        return UnifiedMapWithHashingStrategy.newMap(this.hashingStrategy, keyCount);
    }

    @Override
    protected MutableBag createCollection()
    {
        return HashBag.newBag();
    }

    public HashingStrategy getKeyHashingStrategy()
    {
        return this.hashingStrategy;
    }

    @Override
    public HashBagMultimapWithHashingStrategy newEmpty()
    {
        return new HashBagMultimapWithHashingStrategy<>(this.hashingStrategy);
    }

    @Override
    public void writeExternal(ObjectOutput out) throws IOException
    {
        out.writeObject(this.hashingStrategy);
        super.writeExternal(out);
    }

    @Override
    public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
    {
        this.hashingStrategy = (HashingStrategy) in.readObject();
        super.readExternal(in);
    }

    // Currently, this returns a HashBagMultimap.
    // In a future release, it will return HashBagWithHashingStrategyMultimap, where the HashBag collection hashing strategy
    // will be the hashing strategy of this multimap
    @Override
    public MutableBagMultimap flip()
    {
        return Iterate.flip(this);
    }

    @Override
    public  HashBagMultimapWithHashingStrategy collectValues(Function function)
    {
        return this.collectValues(function, HashBagMultimapWithHashingStrategy.newMultimap(this.hashingStrategy));
    }

    @Override
    public HashBagMultimapWithHashingStrategy selectKeysValues(Predicate2 predicate)
    {
        return this.selectKeysValues(predicate, this.newEmpty());
    }

    @Override
    public HashBagMultimapWithHashingStrategy rejectKeysValues(Predicate2 predicate)
    {
        return this.rejectKeysValues(predicate, this.newEmpty());
    }

    @Override
    public HashBagMultimapWithHashingStrategy selectKeysMultiValues(Predicate2> predicate)
    {
        return this.selectKeysMultiValues(predicate, this.newEmpty());
    }

    @Override
    public HashBagMultimapWithHashingStrategy rejectKeysMultiValues(Predicate2> predicate)
    {
        return this.rejectKeysMultiValues(predicate, this.newEmpty());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy