package org.eclipse.collections.impl.map.mutable.primitive;
import java.io.Serializable;
import org.eclipse.collections.api.ShortIterable;
import org.eclipse.collections.api.FloatIterable;
import org.eclipse.collections.api.LazyShortIterable;
import org.eclipse.collections.api.LazyFloatIterable;
import org.eclipse.collections.api.RichIterable;
import org.eclipse.collections.api.bag.MutableBag;
import org.eclipse.collections.api.bag.primitive.MutableShortBag;
import org.eclipse.collections.api.block.function.primitive.ShortFunction;
import org.eclipse.collections.api.block.function.primitive.ShortFunction0;
import org.eclipse.collections.api.block.function.primitive.ShortToShortFunction;
import org.eclipse.collections.api.block.function.primitive.ShortToObjectFunction;
import org.eclipse.collections.api.block.function.primitive.FloatShortToShortFunction;
import org.eclipse.collections.api.block.function.primitive.ObjectShortToObjectFunction;
import org.eclipse.collections.api.block.function.primitive.FloatToShortFunction;
import org.eclipse.collections.api.block.predicate.primitive.ShortPredicate;
import org.eclipse.collections.api.block.predicate.primitive.FloatShortPredicate;
import org.eclipse.collections.api.block.procedure.primitive.ShortProcedure;
import org.eclipse.collections.api.block.procedure.primitive.FloatShortProcedure;
import org.eclipse.collections.api.block.procedure.primitive.FloatProcedure;
import org.eclipse.collections.api.collection.primitive.MutableShortCollection;
import org.eclipse.collections.api.iterator.MutableShortIterator;
import org.eclipse.collections.api.list.primitive.MutableShortList;
import org.eclipse.collections.api.map.primitive.ImmutableFloatShortMap;
import org.eclipse.collections.api.map.primitive.FloatShortMap;
import org.eclipse.collections.api.map.primitive.MutableFloatShortMap;
import org.eclipse.collections.api.map.primitive.MutableShortFloatMap;
import org.eclipse.collections.api.set.primitive.MutableFloatSet;
import org.eclipse.collections.api.set.primitive.MutableShortSet;
import org.eclipse.collections.api.tuple.primitive.FloatShortPair;
import org.eclipse.collections.impl.collection.mutable.primitive.UnmodifiableShortCollection;
import org.eclipse.collections.impl.factory.primitive.FloatShortMaps;
import org.eclipse.collections.impl.iterator.UnmodifiableShortIterator;
import org.eclipse.collections.impl.set.mutable.primitive.UnmodifiableFloatSet;
public class UnmodifiableFloatShortMap
implements MutableFloatShortMap, Serializable
{
private static final long serialVersionUID = 1L;
private final MutableFloatShortMap map;
public UnmodifiableFloatShortMap(MutableFloatShortMap map)
{
if (map == null)
{
throw new IllegalArgumentException("Cannot create a UnmodifiableFloatShortMap on a null map");
}
this.map = map;
}
@Override
public void clear()
{
throw new UnsupportedOperationException("Cannot call clear() on " + this.getClass().getSimpleName());
}
@Override
public void put(float key, short value)
{
throw new UnsupportedOperationException("Cannot call put() on " + this.getClass().getSimpleName());
}
@Override
public void putPair(FloatShortPair keyValuePair)
{
throw new UnsupportedOperationException("Cannot call putPair() on " + this.getClass().getSimpleName());
}
@Override
public void putAll(FloatShortMap map)
{
throw new UnsupportedOperationException("Cannot call putAll() on " + this.getClass().getSimpleName());
}
@Override
public void updateValues(FloatShortToShortFunction function)
{
throw new UnsupportedOperationException("Cannot call updateValues() on " + this.getClass().getSimpleName());
}
@Override
public void removeKey(float key)
{
throw new UnsupportedOperationException("Cannot call removeKey() on " + this.getClass().getSimpleName());
}
@Override
public void remove(float key)
{
throw new UnsupportedOperationException("Cannot call remove() on " + this.getClass().getSimpleName());
}
@Override
public short removeKeyIfAbsent(float key, short value)
{
if (this.map.containsKey(key))
{
throw new UnsupportedOperationException("Cannot call removeKey() on " + this.getClass().getSimpleName());
}
return value;
}
@Override
public short getIfAbsentPut(float key, short value)
{
return this.map.getIfAbsentPut(key, () -> { throw new UnsupportedOperationException(); });
}
@Override
public short getIfAbsentPut(float key, ShortFunction0 function)
{
return this.map.getIfAbsentPut(key, () -> { throw new UnsupportedOperationException(); });
}
@Override
public short getIfAbsentPutWithKey(float key, FloatToShortFunction function)
{
return this.map.getIfAbsentPut(key, () -> { throw new UnsupportedOperationException(); });
}
@Override
public <P> short getIfAbsentPutWith(float key, ShortFunction<? super P> function, P parameter)
{
return this.map.getIfAbsentPut(key, () -> { throw new UnsupportedOperationException(); });
}
@Override
public short updateValue(float key, short initialValueIfAbsent, ShortToShortFunction function)
{
throw new UnsupportedOperationException("Cannot call updateValue() on " + this.getClass().getSimpleName());
}
@Override
public short get(float key)
{
return this.map.get(key);
}
@Override
public short getIfAbsent(float key, short ifAbsent)
{
return this.map.getIfAbsent(key, ifAbsent);
}
@Override
public short getOrThrow(float key)
{
return this.map.getOrThrow(key);
}
@Override
public boolean containsKey(float key)
{
return this.map.containsKey(key);
}
@Override
public boolean containsValue(short value)
{
return this.map.containsValue(value);
}
@Override
public void forEachValue(ShortProcedure procedure)
{
this.map.forEachValue(procedure);
}
@Override
public void forEachKey(FloatProcedure procedure)
{
this.map.forEachKey(procedure);
}
@Override
public void forEachKeyValue(FloatShortProcedure procedure)
{
this.map.forEachKeyValue(procedure);
}
@Override
public LazyFloatIterable keysView()
{
return this.map.keysView();
}
@Override
public RichIterable<FloatShortPair> keyValuesView()
{
return this.map.keyValuesView();
}
@Override
public MutableShortFloatMap flipUniqueValues()
{
return this.map.flipUniqueValues().asUnmodifiable();
}
@Override
public MutableFloatShortMap select(FloatShortPredicate predicate)
{
return this.map.select(predicate);
}
@Override
public MutableFloatShortMap reject(FloatShortPredicate predicate)
{
return this.map.reject(predicate);
}
@Override
public MutableShortIterator shortIterator()
{
return new UnmodifiableShortIterator(this.map.shortIterator());
}
@Override
public void forEach(ShortProcedure procedure)
{
this.each(procedure);
}
@Override
public void each(ShortProcedure procedure)
{
this.map.forEach(procedure);
}
@Override
public int count(ShortPredicate predicate)
{
return this.map.count(predicate);
}
@Override
public boolean anySatisfy(ShortPredicate predicate)
{
return this.map.anySatisfy(predicate);
}
@Override
public boolean allSatisfy(ShortPredicate predicate)
{
return this.map.allSatisfy(predicate);
}
@Override
public boolean noneSatisfy(ShortPredicate predicate)
{
return this.map.noneSatisfy(predicate);
}
@Override
public MutableShortBag select(ShortPredicate predicate)
{
return this.map.select(predicate);
}
@Override
public MutableShortBag reject(ShortPredicate predicate)
{
return this.map.reject(predicate);
}
@Override
public <V> MutableBag<V> collect(ShortToObjectFunction<? extends V> function)
{
return this.map.collect(function);
}
@Override
public short detectIfNone(ShortPredicate predicate, short ifNone)
{
return this.map.detectIfNone(predicate, ifNone);
}
@Override
public long sum()
{
return this.map.sum();
}
@Override
public short max()
{
return this.map.max();
}
@Override
public short maxIfEmpty(short defaultValue)
{
return this.map.maxIfEmpty(defaultValue);
}
@Override
public short min()
{
return this.map.min();
}
@Override
public short minIfEmpty(short defaultValue)
{
return this.map.minIfEmpty(defaultValue);
}
@Override
public double average()
{
return this.map.average();
}
@Override
public double median()
{
return this.map.median();
}
@Override
public short addToValue(float key, short toBeAdded)
{
throw new UnsupportedOperationException("Cannot call addToValue() on " + this.getClass().getSimpleName());
}
@Override
public short[] toSortedArray()
{
return this.map.toSortedArray();
}
@Override
public MutableShortList toSortedList()
{
return this.map.toSortedList();
}
@Override
public short[] toArray()
{
return this.map.toArray();
}
@Override
public boolean contains(short value)
{
return this.map.contains(value);
}
@Override
public boolean containsAll(short... source)
{
return this.map.containsAll(source);
}
@Override
public boolean containsAll(ShortIterable source)
{
return this.map.containsAll(source);
}
@Override
public MutableShortList toList()
{
return this.map.toList();
}
@Override
public MutableShortSet toSet()
{
return this.map.toSet();
}
@Override
public MutableShortBag toBag()
{
return this.map.toBag();
}
@Override
public LazyShortIterable asLazy()
{
return this.map.asLazy();
}
@Override
public MutableFloatShortMap withKeyValue(float key, short value)
{
throw new UnsupportedOperationException("Cannot call withKeyValue() on " + this.getClass().getSimpleName());
}
@Override
public MutableFloatShortMap withoutKey(float key)
{
throw new UnsupportedOperationException("Cannot call withoutKey() on " + this.getClass().getSimpleName());
}
@Override
public MutableFloatShortMap withoutAllKeys(FloatIterable keys)
{
throw new UnsupportedOperationException("Cannot call withoutAllKeys() on " + this.getClass().getSimpleName());
}
@Override
public MutableFloatShortMap asUnmodifiable()
{
return this;
}
@Override
public MutableFloatShortMap asSynchronized()
{
return new SynchronizedFloatShortMap(this);
}
@Override
public ImmutableFloatShortMap toImmutable()
{
return FloatShortMaps.immutable.withAll(this);
}
@Override
public int size()
{
return this.map.size();
}
@Override
public boolean isEmpty()
{
return this.map.isEmpty();
}
@Override
public boolean notEmpty()
{
return this.map.notEmpty();
}
@Override
public MutableFloatSet keySet()
{
return UnmodifiableFloatSet.of(this.map.keySet());
}
@Override
public MutableShortCollection values()
{
return UnmodifiableShortCollection.of(this.map.values());
}
@Override
public boolean equals(Object otherMap)
{
return this.map.equals(otherMap);
}
@Override
public int hashCode()
{
return this.map.hashCode();
}
@Override
public String toString()
{
return this.map.toString();
}
@Override
public String makeString()
{
return this.map.makeString();
}
@Override
public String makeString(String separator)
{
return this.map.makeString(separator);
}
@Override
public String makeString(String start, String separator, String end)
{
return this.map.makeString(start, separator, end);
}
@Override
public void appendString(Appendable appendable)
{
this.map.appendString(appendable);
}
@Override
public void appendString(Appendable appendable, String separator)
{
this.map.appendString(appendable, separator);
}
@Override
public void appendString(Appendable appendable, String start, String separator, String end)
{
this.map.appendString(appendable, start, separator, end);
}
@Override
public <T> T injectInto(T injectedValue, ObjectShortToObjectFunction<? super T, ? extends T> function)
{
return this.map.injectInto(injectedValue, function);
}
@Override
public RichIterable<ShortIterable> chunk(int size)
{
return this.map.chunk(size);
}
}