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

com.gs.collections.impl.map.strategy.immutable.ImmutableUnifiedMapWithHashingStrategy Maven / Gradle / Ivy

Go to download

GS Collections is a collections framework for Java. It has JDK-compatible List, Set and Map implementations with a rich API and set of utility classes that work with any JDK compatible Collections, Arrays, Maps or Strings. The iteration protocol was inspired by the Smalltalk collection framework.

There is a newer version: 7.0.3
Show newest version
/*
 * Copyright 2011 Goldman Sachs.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.gs.collections.impl.map.strategy.immutable;

import java.io.Serializable;
import java.util.Collection;
import java.util.Set;

import com.gs.collections.api.RichIterable;
import com.gs.collections.api.block.HashingStrategy;
import com.gs.collections.api.block.function.Function2;
import com.gs.collections.api.block.predicate.Predicate2;
import com.gs.collections.api.block.procedure.Procedure;
import com.gs.collections.api.block.procedure.Procedure2;
import com.gs.collections.api.block.procedure.primitive.ObjectIntProcedure;
import com.gs.collections.api.map.ImmutableMap;
import com.gs.collections.api.map.MutableMap;
import com.gs.collections.api.tuple.Pair;
import com.gs.collections.impl.block.factory.HashingStrategies;
import com.gs.collections.impl.collection.mutable.UnmodifiableMutableCollection;
import com.gs.collections.impl.map.immutable.AbstractImmutableMap;
import com.gs.collections.impl.map.strategy.mutable.UnifiedMapWithHashingStrategy;
import com.gs.collections.impl.parallel.BatchIterable;
import com.gs.collections.impl.set.mutable.UnmodifiableMutableSet;
import com.gs.collections.impl.set.strategy.mutable.UnifiedSetWithHashingStrategy;
import com.gs.collections.impl.utility.MapIterate;
import net.jcip.annotations.Immutable;

@Immutable
/**
 * @see ImmutableMap
 */
public class ImmutableUnifiedMapWithHashingStrategy
        extends AbstractImmutableMap implements BatchIterable, Serializable
{
    private static final long serialVersionUID = 1L;
    private final UnifiedMapWithHashingStrategy delegate;

    public ImmutableUnifiedMapWithHashingStrategy(UnifiedMapWithHashingStrategy delegate)
    {
        this.delegate = UnifiedMapWithHashingStrategy.newMap(delegate);
    }

    public ImmutableUnifiedMapWithHashingStrategy(
            HashingStrategy hashingStrategy,
            Pair... pairs)
    {
        this.delegate = UnifiedMapWithHashingStrategy.newMapWith(hashingStrategy, pairs);
    }

    @Override
    public boolean equals(Object o)
    {
        return this.delegate.equals(o);
    }

    @Override
    public int hashCode()
    {
        return this.delegate.hashCode();
    }

    @Override
    public String toString()
    {
        return this.delegate.toString();
    }

    public int size()
    {
        return this.delegate.size();
    }

    public boolean containsKey(Object key)
    {
        return this.delegate.containsKey(key);
    }

    public boolean containsValue(Object value)
    {
        return this.delegate.containsValue(value);
    }

    public V get(Object key)
    {
        return this.delegate.get(key);
    }

    public int getBatchCount(int batchSize)
    {
        return this.delegate.getBatchCount(batchSize);
    }

    public void batchForEach(Procedure procedure, int sectionIndex, int sectionCount)
    {
        this.delegate.batchForEach(procedure, sectionIndex, sectionCount);
    }

    @Override
    public void forEachValue(Procedure procedure)
    {
        this.delegate.forEachValue(procedure);
    }

    @Override
    public void forEachKey(Procedure procedure)
    {
        this.delegate.forEachKey(procedure);
    }

    public void forEachKeyValue(Procedure2 procedure)
    {
        this.delegate.forEachKeyValue(procedure);
    }

    @Override
    public Set> entrySet()
    {
        final UnifiedSetWithHashingStrategy> result = UnifiedSetWithHashingStrategy.newSet(
                HashingStrategies.>defaultStrategy(), this.delegate.size());
        final HashingStrategy hashingStrategy = this.delegate.hashingStrategy();
        this.forEachKeyValue(new Procedure2()
        {
            public void value(K argument1, V argument2)
            {
                result.put(ImmutableEntryWithHashingStrategy.of(argument1, argument2, hashingStrategy));
            }
        });
        return result.toImmutable().castToSet();
    }

    public Set keySet()
    {
        return UnmodifiableMutableSet.of(this.delegate.keySet());
    }

    public Collection values()
    {
        return UnmodifiableMutableCollection.of(this.delegate.values());
    }

    public RichIterable keysView()
    {
        return this.delegate.keysView();
    }

    public RichIterable valuesView()
    {
        return this.delegate.valuesView();
    }

    public RichIterable> keyValuesView()
    {
        return this.delegate.keyValuesView();
    }

    @Override
    public void forEachWithIndex(ObjectIntProcedure objectIntProcedure)
    {
        this.delegate.forEachWithIndex(objectIntProcedure);
    }

    @Override
    public 

void forEachWith(Procedure2 procedure, P parameter) { this.delegate.forEachWith(procedure, parameter); } @Override public ImmutableMap newWithKeyValue(K key, V value) { UnifiedMapWithHashingStrategy result = UnifiedMapWithHashingStrategy.newMap(this.delegate); result.put(key, value); return result.toImmutable(); } @Override public ImmutableMap newWithAllKeyValues(Iterable> keyValues) { UnifiedMapWithHashingStrategy result = UnifiedMapWithHashingStrategy.newMap(this.delegate); for (Pair pair : keyValues) { result.put(pair.getOne(), pair.getTwo()); } return result.toImmutable(); } @Override public ImmutableMap newWithAllKeyValueArguments(Pair... keyValuePairs) { UnifiedMapWithHashingStrategy result = UnifiedMapWithHashingStrategy.newMap(this.delegate); for (Pair keyValuePair : keyValuePairs) { result.put(keyValuePair.getOne(), keyValuePair.getTwo()); } return result.toImmutable(); } @Override public ImmutableMap newWithoutKey(K key) { UnifiedMapWithHashingStrategy result = UnifiedMapWithHashingStrategy.newMap(this.delegate); result.remove(key); return result.toImmutable(); } @Override public ImmutableMap newWithoutAllKeys(Iterable keys) { UnifiedMapWithHashingStrategy result = UnifiedMapWithHashingStrategy.newMap(this.delegate); for (K key : keys) { result.remove(key); } return result.toImmutable(); } @Override public ImmutableMap collectValues(Function2 function) { MutableMap result = MapIterate.collectValues(this, function, UnifiedMapWithHashingStrategy.newMap(this.delegate.hashingStrategy(), this.delegate.size())); return result.toImmutable(); } @Override public ImmutableMap select(Predicate2 predicate) { MutableMap result = MapIterate.selectMapOnEntry(this, predicate, this.delegate.newEmpty()); return result.toImmutable(); } @Override public ImmutableMap reject(Predicate2 predicate) { MutableMap result = MapIterate.rejectMapOnEntry(this, predicate, this.delegate.newEmpty()); return result.toImmutable(); } protected Object writeReplace() { return new ImmutableMapWithHashingStrategySerializationProxy(this, this.delegate.hashingStrategy()); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy