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

com.gs.collections.impl.map.mutable.primitive.UnmodifiableLongDoubleMap 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 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.mutable.primitive;

import java.io.Serializable;

import com.gs.collections.api.DoubleIterable;
import com.gs.collections.api.LongIterable;
import com.gs.collections.api.LazyDoubleIterable;
import com.gs.collections.api.LazyLongIterable;
import com.gs.collections.api.RichIterable;
import com.gs.collections.api.bag.primitive.MutableDoubleBag;
import com.gs.collections.api.block.function.primitive.DoubleFunction;
import com.gs.collections.api.block.function.primitive.DoubleFunction0;
import com.gs.collections.api.block.function.primitive.DoubleToDoubleFunction;
import com.gs.collections.api.block.function.primitive.DoubleToObjectFunction;
import com.gs.collections.api.block.function.primitive.ObjectDoubleToObjectFunction;
import com.gs.collections.api.block.function.primitive.LongToDoubleFunction;
import com.gs.collections.api.block.predicate.primitive.DoublePredicate;
import com.gs.collections.api.block.predicate.primitive.LongDoublePredicate;
import com.gs.collections.api.block.procedure.primitive.DoubleProcedure;
import com.gs.collections.api.block.procedure.primitive.LongDoubleProcedure;
import com.gs.collections.api.block.procedure.primitive.LongProcedure;
import com.gs.collections.api.collection.MutableCollection;
import com.gs.collections.api.collection.primitive.MutableDoubleCollection;
import com.gs.collections.api.iterator.MutableDoubleIterator;
import com.gs.collections.api.list.primitive.MutableDoubleList;
import com.gs.collections.api.map.primitive.ImmutableLongDoubleMap;
import com.gs.collections.api.map.primitive.LongDoubleMap;
import com.gs.collections.api.map.primitive.MutableLongDoubleMap;
import com.gs.collections.api.set.primitive.MutableLongSet;
import com.gs.collections.api.set.primitive.MutableDoubleSet;
import com.gs.collections.api.tuple.primitive.LongDoublePair;
import com.gs.collections.impl.factory.primitive.LongDoubleMaps;
import com.gs.collections.impl.iterator.UnmodifiableDoubleIterator;
import com.gs.collections.impl.set.mutable.primitive.UnmodifiableLongSet;
import com.gs.collections.impl.collection.mutable.primitive.UnmodifiableDoubleCollection;

/**
 * This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.
 *
 * @since 3.1.
 */
public final class UnmodifiableLongDoubleMap
        implements MutableLongDoubleMap, Serializable
{
    private static final long serialVersionUID = 1L;
    private final MutableLongDoubleMap map;

    UnmodifiableLongDoubleMap(MutableLongDoubleMap map)
    {
        this.map = map;
    }

    public void clear()
    {
        throw new UnsupportedOperationException("Cannot call clear() on " + this.getClass().getSimpleName());
    }

    public void put(long key, double value)
    {
        throw new UnsupportedOperationException("Cannot call put() on " + this.getClass().getSimpleName());
    }

    public void putAll(LongDoubleMap map)
    {
        throw new UnsupportedOperationException("Cannot call putAll() on " + this.getClass().getSimpleName());
    }

    public void removeKey(long key)
    {
        throw new UnsupportedOperationException("Cannot call removeKey() on " + this.getClass().getSimpleName());
    }

    public void remove(long key)
    {
        throw new UnsupportedOperationException("Cannot call remove() on " + this.getClass().getSimpleName());
    }

    public double removeKeyIfAbsent(long key, double value)
    {
        if (this.map.containsKey(key))
        {
            throw new UnsupportedOperationException("Cannot call removeKey() on " + this.getClass().getSimpleName());
        }
        return value;
    }

    public double getIfAbsentPut(long key, double value)
    {
        return this.map.getIfAbsentPut(key, new DoubleFunction0()
        {
            public double value()
            {
                throw new UnsupportedOperationException();
            }
        });
    }

    public double getIfAbsentPut(long key, DoubleFunction0 function)
    {
        return this.map.getIfAbsentPut(key, new DoubleFunction0()
        {
            public double value()
            {
                throw new UnsupportedOperationException();
            }
        });
    }

    public double getIfAbsentPutWithKey(long key, LongToDoubleFunction function)
    {
        return this.map.getIfAbsentPut(key, new DoubleFunction0()
        {
            public double value()
            {
                throw new UnsupportedOperationException();
            }
        });
    }

    public 

double getIfAbsentPutWith(long key, DoubleFunction function, P parameter) { return this.map.getIfAbsentPut(key, new DoubleFunction0() { public double value() { throw new UnsupportedOperationException(); } }); } public double updateValue(long key, double initialValueIfAbsent, DoubleToDoubleFunction function) { throw new UnsupportedOperationException("Cannot call updateValue() on " + this.getClass().getSimpleName()); } public double get(long key) { return this.map.get(key); } public double getIfAbsent(long key, double ifAbsent) { return this.map.getIfAbsent(key, ifAbsent); } public double getOrThrow(long key) { return this.map.getOrThrow(key); } public boolean containsKey(long key) { return this.map.containsKey(key); } public boolean containsValue(double value) { return this.map.containsValue(value); } public void forEachValue(DoubleProcedure procedure) { this.map.forEachValue(procedure); } public void forEachKey(LongProcedure procedure) { this.map.forEachKey(procedure); } public void forEachKeyValue(LongDoubleProcedure procedure) { this.map.forEachKeyValue(procedure); } public LazyLongIterable keysView() { return this.map.keysView(); } public RichIterable keyValuesView() { return this.map.keyValuesView(); } public MutableLongDoubleMap select(LongDoublePredicate predicate) { return this.map.select(predicate); } public MutableLongDoubleMap reject(LongDoublePredicate predicate) { return this.map.reject(predicate); } public MutableDoubleIterator doubleIterator() { return new UnmodifiableDoubleIterator(this.map.doubleIterator()); } public void forEach(DoubleProcedure procedure) { this.each(procedure); } /** * @since 7.0. */ public void each(DoubleProcedure procedure) { this.map.forEach(procedure); } public int count(DoublePredicate predicate) { return this.map.count(predicate); } public boolean anySatisfy(DoublePredicate predicate) { return this.map.anySatisfy(predicate); } public boolean allSatisfy(DoublePredicate predicate) { return this.map.allSatisfy(predicate); } public boolean noneSatisfy(DoublePredicate predicate) { return this.map.noneSatisfy(predicate); } public MutableDoubleCollection select(DoublePredicate predicate) { return this.map.select(predicate); } public MutableDoubleCollection reject(DoublePredicate predicate) { return this.map.reject(predicate); } public double detectIfNone(DoublePredicate predicate, double ifNone) { return this.map.detectIfNone(predicate, ifNone); } public MutableCollection collect(DoubleToObjectFunction function) { return this.map.collect(function); } public double sum() { return this.map.sum(); } public double max() { return this.map.max(); } public double maxIfEmpty(double defaultValue) { return this.map.maxIfEmpty(defaultValue); } public double min() { return this.map.min(); } public double minIfEmpty(double defaultValue) { return this.map.minIfEmpty(defaultValue); } public double average() { return this.map.average(); } public double median() { return this.map.median(); } public double addToValue(long key, double toBeAdded) { throw new UnsupportedOperationException("Cannot call addToValue() on " + this.getClass().getSimpleName()); } public double[] toSortedArray() { return this.map.toSortedArray(); } public MutableDoubleList toSortedList() { return this.map.toSortedList(); } public double[] toArray() { return this.map.toArray(); } public boolean contains(double value) { return this.map.contains(value); } public boolean containsAll(double... source) { return this.map.containsAll(source); } public boolean containsAll(DoubleIterable source) { return this.map.containsAll(source); } public MutableDoubleList toList() { return this.map.toList(); } public MutableDoubleSet toSet() { return this.map.toSet(); } public MutableDoubleBag toBag() { return this.map.toBag(); } public LazyDoubleIterable asLazy() { return this.map.asLazy(); } public MutableLongDoubleMap withKeyValue(long key, double value) { throw new UnsupportedOperationException("Cannot call withKeyValue() on " + this.getClass().getSimpleName()); } public MutableLongDoubleMap withoutKey(long key) { throw new UnsupportedOperationException("Cannot call withoutKey() on " + this.getClass().getSimpleName()); } public MutableLongDoubleMap withoutAllKeys(LongIterable keys) { throw new UnsupportedOperationException("Cannot call withoutAllKeys() on " + this.getClass().getSimpleName()); } public MutableLongDoubleMap asUnmodifiable() { return this; } public MutableLongDoubleMap asSynchronized() { return new SynchronizedLongDoubleMap(this); } public ImmutableLongDoubleMap toImmutable() { return LongDoubleMaps.immutable.withAll(this); } public int size() { return this.map.size(); } public boolean isEmpty() { return this.map.isEmpty(); } public boolean notEmpty() { return this.map.notEmpty(); } public MutableLongSet keySet() { return UnmodifiableLongSet.of(this.map.keySet()); } public MutableDoubleCollection values() { return UnmodifiableDoubleCollection.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(); } public String makeString() { return this.map.makeString(); } public String makeString(String separator) { return this.map.makeString(separator); } public String makeString(String start, String separator, String end) { return this.map.makeString(start, separator, end); } public void appendString(Appendable appendable) { this.map.appendString(appendable); } public void appendString(Appendable appendable, String separator) { this.map.appendString(appendable, separator); } public void appendString(Appendable appendable, String start, String separator, String end) { this.map.appendString(appendable, start, separator, end); } public T injectInto(T injectedValue, ObjectDoubleToObjectFunction function) { return this.map.injectInto(injectedValue, function); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy