com.gs.collections.impl.map.immutable.ImmutableUnifiedMap Maven / Gradle / Ivy
Show all versions of gs-collections Show documentation
/*
* Copyright 2014 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.immutable;
import java.io.Serializable;
import java.util.Collection;
import java.util.Map;
import java.util.Set;
import com.gs.collections.api.RichIterable;
import com.gs.collections.api.block.function.Function;
import com.gs.collections.api.block.function.Function0;
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.tuple.Pair;
import com.gs.collections.impl.collection.mutable.UnmodifiableMutableCollection;
import com.gs.collections.impl.map.mutable.UnifiedMap;
import com.gs.collections.impl.parallel.BatchIterable;
import com.gs.collections.impl.set.mutable.UnmodifiableMutableSet;
import net.jcip.annotations.Immutable;
@Immutable
/**
* @see ImmutableMap
*/
public class ImmutableUnifiedMap
extends AbstractImmutableMap implements BatchIterable, Serializable
{
private static final long serialVersionUID = 1L;
private final UnifiedMap delegate;
public ImmutableUnifiedMap(Map delegate)
{
this.delegate = UnifiedMap.newMap(delegate);
}
public ImmutableUnifiedMap(Pair... pairs)
{
this(UnifiedMap.newMapWith(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 super V> procedure, int sectionIndex, int sectionCount)
{
this.delegate.batchForEach(procedure, sectionIndex, sectionCount);
}
@Override
public void forEachValue(Procedure super V> procedure)
{
this.delegate.forEachValue(procedure);
}
@Override
public void forEachKey(Procedure super K> procedure)
{
this.delegate.forEachKey(procedure);
}
public void forEachKeyValue(Procedure2 super K, ? super V> procedure)
{
this.delegate.forEachKeyValue(procedure);
}
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 super V> objectIntProcedure)
{
this.delegate.forEachWithIndex(objectIntProcedure);
}
@Override
public void forEachWith(Procedure2 super V, ? super P> procedure, P parameter)
{
this.delegate.forEachWith(procedure, parameter);
}
protected Object writeReplace()
{
return new ImmutableMapSerializationProxy(this);
}
@Override
public A ifPresentApply(K key, Function super V, ? extends A> function)
{
return this.delegate.ifPresentApply(key, function);
}
@Override
public V getIfAbsent(K key, Function0 extends V> function)
{
return this.delegate.getIfAbsent(key, function);
}
@Override
public V getIfAbsentValue(K key, V value)
{
return this.delegate.getIfAbsentValue(key, value);
}
@Override
public V getIfAbsentWith(
K key,
Function super P, ? extends V> function,
P parameter)
{
return this.delegate.getIfAbsentWith(key, function, parameter);
}
}