package org.eclipse.collections.impl.map.immutable.primitive;
import java.io.Serializable;
import java.util.Iterator;
import java.util.Set;
import org.eclipse.collections.api.ShortIterable;
import org.eclipse.collections.api.LazyShortIterable;
import org.eclipse.collections.api.LazyIterable;
import org.eclipse.collections.api.RichIterable;
import org.eclipse.collections.api.bag.primitive.MutableShortBag;
import org.eclipse.collections.api.block.function.primitive.ShortToObjectFunction;
import org.eclipse.collections.api.block.function.primitive.ObjectShortToObjectFunction;
import org.eclipse.collections.api.block.predicate.primitive.ShortPredicate;
import org.eclipse.collections.api.block.predicate.primitive.ObjectShortPredicate;
import org.eclipse.collections.api.block.procedure.Procedure;
import org.eclipse.collections.api.block.procedure.primitive.ShortProcedure;
import org.eclipse.collections.api.block.procedure.primitive.ObjectShortProcedure;
import org.eclipse.collections.api.list.MutableList;
import org.eclipse.collections.api.map.primitive.ObjectShortMap;
import org.eclipse.collections.api.collection.ImmutableCollection;
import org.eclipse.collections.api.collection.MutableCollection;
import org.eclipse.collections.api.collection.primitive.ImmutableShortCollection;
import org.eclipse.collections.api.collection.primitive.MutableShortCollection;
import org.eclipse.collections.api.iterator.ShortIterator;
import org.eclipse.collections.api.list.primitive.MutableShortList;
import org.eclipse.collections.api.map.primitive.ImmutableObjectShortMap;
import org.eclipse.collections.api.map.primitive.ImmutableShortObjectMap;
import org.eclipse.collections.api.map.primitive.MutableObjectShortMap;
import org.eclipse.collections.api.map.primitive.MutableShortObjectMap;
import org.eclipse.collections.api.set.primitive.MutableShortSet;
import org.eclipse.collections.api.tuple.primitive.ObjectShortPair;
import org.eclipse.collections.impl.collection.mutable.primitive.UnmodifiableShortCollection;
import org.eclipse.collections.impl.factory.Lists;
import org.eclipse.collections.impl.factory.primitive.ShortBags;
import org.eclipse.collections.impl.iterator.UnmodifiableShortIterator;
import org.eclipse.collections.impl.map.mutable.primitive.ObjectShortHashMap;
import org.eclipse.collections.impl.factory.primitive.ShortObjectMaps;
import org.eclipse.collections.impl.set.mutable.UnmodifiableMutableSet;
final class ImmutableObjectShortHashMap<K> extends AbstractImmutableObjectShortMap<K> implements Serializable
{
private static final long serialVersionUID = 1L;
private final MutableObjectShortMap<K> delegate;
ImmutableObjectShortHashMap(ObjectShortMap<? extends K> delegate)
{
this.delegate = new ObjectShortHashMap<>(delegate);
}
@Override
public ShortIterator shortIterator()
{
return new UnmodifiableShortIterator(this.delegate.shortIterator());
}
@Override
public void forEach(ShortProcedure procedure)
{
this.each(procedure);
}
@Override
public void each(ShortProcedure procedure)
{
this.delegate.forEach(procedure);
}
@Override
public int count(ShortPredicate predicate)
{
return this.delegate.count(predicate);
}
@Override
public boolean anySatisfy(ShortPredicate predicate)
{
return this.delegate.anySatisfy(predicate);
}
@Override
public boolean allSatisfy(ShortPredicate predicate)
{
return this.delegate.allSatisfy(predicate);
}
@Override
public boolean noneSatisfy(ShortPredicate predicate)
{
return this.delegate.noneSatisfy(predicate);
}
@Override
public ImmutableShortCollection select(ShortPredicate predicate)
{
return this.delegate.select(predicate).toImmutable();
}
@Override
public ImmutableShortCollection reject(ShortPredicate predicate)
{
return this.delegate.reject(predicate).toImmutable();
}
@Override
public short detectIfNone(ShortPredicate predicate, short ifNone)
{
return this.delegate.detectIfNone(predicate, ifNone);
}
@Override
public <T> T injectInto(T injectedValue, ObjectShortToObjectFunction<? super T, ? extends T> function)
{
return this.delegate.injectInto(injectedValue, function);
}
@Override
public RichIterable<ShortIterable> chunk(int size)
{
if (size <= 0)
{
throw new IllegalArgumentException("Size for groups must be positive but was: " + size);
}
MutableList<ShortIterable> result = Lists.mutable.empty();
if (this.notEmpty())
{
ShortIterator iterator = this.shortIterator();
while (iterator.hasNext())
{
MutableShortBag batch = ShortBags.mutable.empty();
for (int i = 0; i < size && iterator.hasNext(); i++)
{
batch.add(iterator.next());
}
result.add(batch.toImmutable());
}
}
return result.toImmutable();
}
@Override
public <V> ImmutableCollection<V> collect(ShortToObjectFunction<? extends V> function)
{
MutableCollection<V> collection = this.delegate.collect(function);
return collection.toImmutable();
}
@Override
public long sum()
{
return this.delegate.sum();
}
@Override
public short max()
{
return this.delegate.max();
}
@Override
public short maxIfEmpty(short defaultValue)
{
return this.delegate.maxIfEmpty(defaultValue);
}
@Override
public short min()
{
return this.delegate.min();
}
@Override
public short minIfEmpty(short defaultValue)
{
return this.delegate.minIfEmpty(defaultValue);
}
@Override
public double average()
{
return this.delegate.average();
}
@Override
public double median()
{
return this.delegate.median();
}
@Override
public short[] toSortedArray()
{
return this.delegate.toSortedArray();
}
@Override
public MutableShortList toSortedList()
{
return this.delegate.toSortedList();
}
@Override
public short[] toArray()
{
return this.delegate.toArray();
}
@Override
public boolean contains(short value)
{
return this.delegate.contains(value);
}
@Override
public boolean containsAll(short... source)
{
return this.delegate.containsAll(source);
}
@Override
public boolean containsAll(ShortIterable source)
{
return this.delegate.containsAll(source);
}
@Override
public MutableShortList toList()
{
return this.delegate.toList();
}
@Override
public MutableShortSet toSet()
{
return this.delegate.toSet();
}
@Override
public MutableShortBag toBag()
{
return this.delegate.toBag();
}
@Override
public LazyShortIterable asLazy()
{
return this.delegate.asLazy();
}
@Override
public ImmutableObjectShortMap<K> newWithKeyValue(K key, short value)
{
ObjectShortHashMap<K> map = ObjectShortHashMap.newMap();
map.putAll(this);
map.put(key, value);
return map.toImmutable();
}
@Override
public ImmutableObjectShortMap<K> newWithoutKey(K key)
{
ObjectShortHashMap<K> map = ObjectShortHashMap.newMap();
map.putAll(this);
map.removeKey(key);
return map.toImmutable();
}
@Override
public ImmutableObjectShortMap<K> newWithoutAllKeys(Iterable<? extends K> keys)
{
ObjectShortHashMap<K> map = ObjectShortHashMap.newMap();
map.putAll(this);
Iterator<? extends K> iterator = keys.iterator();
while (iterator.hasNext())
{
map.removeKey(iterator.next());
}
return map.toImmutable();
}
@Override
public short get(Object key)
{
return this.delegate.get(key);
}
@Override
public short getOrThrow(Object key)
{
return this.delegate.getOrThrow(key);
}
@Override
public short getIfAbsent(Object key, short ifAbsent)
{
return this.delegate.getIfAbsent(key, ifAbsent);
}
@Override
public boolean containsKey(Object key)
{
return this.delegate.containsKey(key);
}
@Override
public boolean containsValue(short value)
{
return this.delegate.containsValue(value);
}
@Override
public void forEachValue(ShortProcedure procedure)
{
this.delegate.forEachValue(procedure);
}
@Override
public void forEachKey(Procedure<? super K> procedure)
{
this.delegate.forEachKey(procedure);
}
@Override
public void forEachKeyValue(ObjectShortProcedure<? super K> objectShortProcedure)
{
this.delegate.forEachKeyValue(objectShortProcedure);
}
@Override
public ImmutableObjectShortMap<K> select(ObjectShortPredicate<? super K> objectShortPredicate)
{
return this.delegate.select(objectShortPredicate).toImmutable();
}
@Override
public ImmutableObjectShortMap<K> reject(ObjectShortPredicate<? super K> objectShortPredicate)
{
return this.delegate.reject(objectShortPredicate).toImmutable();
}
@Override
public ImmutableObjectShortMap<K> toImmutable()
{
return this;
}
@Override
public int size()
{
return this.delegate.size();
}
@Override
public boolean isEmpty()
{
return this.delegate.isEmpty();
}
@Override
public boolean notEmpty()
{
return this.delegate.notEmpty();
}
@Override
public Set<K> keySet()
{
return UnmodifiableMutableSet.of(this.delegate.keySet());
}
@Override
public MutableShortCollection values()
{
return UnmodifiableShortCollection.of(this.delegate.values());
}
@Override
public LazyIterable<K> keysView()
{
return this.delegate.keysView();
}
@Override
public RichIterable<ObjectShortPair<K>> keyValuesView()
{
return this.delegate.keyValuesView();
}
@Override
public ImmutableShortObjectMap<K> flipUniqueValues()
{
MutableShortObjectMap<K> result = ShortObjectMaps.mutable.empty();
this.forEachKeyValue((key, value) ->
{
K oldKey = result.put(value, key);
if (oldKey != null)
{
throw new IllegalStateException("Duplicate value: " + value + " found at key: " + oldKey + " and key: " + key);
}
});
return result.toImmutable();
}
@Override
public boolean equals(Object obj)
{
return this.delegate.equals(obj);
}
@Override
public int hashCode()
{
return this.delegate.hashCode();
}
@Override
public String toString()
{
return this.delegate.toString();
}
@Override
public String makeString()
{
return this.delegate.makeString();
}
@Override
public String makeString(String separator)
{
return this.delegate.makeString(separator);
}
@Override
public String makeString(String start, String separator, String end)
{
return this.delegate.makeString(start, separator, end);
}
@Override
public void appendString(Appendable appendable)
{
this.delegate.appendString(appendable);
}
@Override
public void appendString(Appendable appendable, String separator)
{
this.delegate.appendString(appendable, separator);
}
@Override
public void appendString(Appendable appendable, String start, String separator, String end)
{
this.delegate.appendString(appendable, start, separator, end);
}
private Object writeReplace()
{
return new ImmutableObjectShortMapSerializationProxy<K>(this);
}
}