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

org.eclipse.collections.impl.map.mutable.primitive.UnmodifiableObjectByteMap Maven / Gradle / Ivy

There is a newer version: 11.1.0-r13
Show newest version
/*
 * Copyright (c) 2022 Goldman Sachs and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * and Eclipse Distribution License v. 1.0 which accompany this distribution.
 * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
 * and the Eclipse Distribution License is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 */

package org.eclipse.collections.impl.map.mutable.primitive;

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

import org.eclipse.collections.api.ByteIterable;
import org.eclipse.collections.api.LazyByteIterable;
import org.eclipse.collections.api.LazyIterable;
import org.eclipse.collections.api.RichIterable;
import org.eclipse.collections.api.bag.primitive.MutableByteBag;
import org.eclipse.collections.api.block.function.primitive.ByteFunction;
import org.eclipse.collections.api.block.function.primitive.ByteFunction0;
import org.eclipse.collections.api.block.function.primitive.ByteToByteFunction;
import org.eclipse.collections.api.block.function.primitive.ByteToObjectFunction;
import org.eclipse.collections.api.block.function.primitive.ObjectByteToByteFunction;
import org.eclipse.collections.api.block.function.primitive.ObjectByteToObjectFunction;
import org.eclipse.collections.api.block.predicate.primitive.BytePredicate;
import org.eclipse.collections.api.block.predicate.primitive.ObjectBytePredicate;
import org.eclipse.collections.api.block.procedure.Procedure;
import org.eclipse.collections.api.block.procedure.primitive.ByteProcedure;
import org.eclipse.collections.api.block.procedure.primitive.ObjectByteProcedure;
import org.eclipse.collections.api.collection.MutableCollection;
import org.eclipse.collections.api.collection.primitive.MutableByteCollection;
import org.eclipse.collections.api.iterator.MutableByteIterator;
import org.eclipse.collections.api.list.primitive.MutableByteList;
import org.eclipse.collections.api.map.primitive.ImmutableObjectByteMap;
import org.eclipse.collections.api.map.primitive.MutableObjectByteMap;
import org.eclipse.collections.api.map.primitive.MutableByteObjectMap;
import org.eclipse.collections.api.map.primitive.ObjectByteMap;
import org.eclipse.collections.api.set.primitive.MutableByteSet;
import org.eclipse.collections.api.tuple.primitive.ObjectBytePair;
import org.eclipse.collections.impl.collection.mutable.primitive.UnmodifiableByteCollection;
import org.eclipse.collections.impl.factory.primitive.ObjectByteMaps;
import org.eclipse.collections.impl.iterator.UnmodifiableByteIterator;

/**
 * This file was automatically generated from template file unmodifiableObjectPrimitiveMap.stg.
 *
 * @since 3.2
 */
public class UnmodifiableObjectByteMap
        implements MutableObjectByteMap, Serializable
{
    private static final long serialVersionUID = 1L;
    private final MutableObjectByteMap map;

    public UnmodifiableObjectByteMap(MutableObjectByteMap map)
    {
        if (map == null)
        {
            throw new IllegalArgumentException("Cannot create a UnmodifiableObjectByteMap on a null map");
        }

        this.map = map;
    }

    private boolean isAbsent(byte result, K key)
    {
        return result == ObjectByteHashMap.EMPTY_VALUE && !this.containsKey(key);
    }

    private byte getIfAbsentThrow(K key)
    {
        byte result = this.map.get(key);
        if (this.isAbsent(result, key))
        {
            throw new UnsupportedOperationException("Cannot add to an " + this.getClass().getSimpleName());
        }
        return result;
    }

    @Override
    public byte getAndPut(K key, byte defaultValue, byte putValue)
    {
        throw new UnsupportedOperationException("Cannot call getAndPut() on " + this.getClass().getSimpleName());
    }

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

    @Override
    public void put(K key, byte value)
    {
        throw new UnsupportedOperationException("Cannot call put() on " + this.getClass().getSimpleName());
    }

    @Override
    public void putPair(ObjectBytePair keyValuePair)
    {
        throw new UnsupportedOperationException("Cannot call putPair() on " + this.getClass().getSimpleName());
    }

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

    @Override
    public void updateValues(ObjectByteToByteFunction function)
    {
        throw new UnsupportedOperationException("Cannot call updateValue() on " + this.getClass().getSimpleName());
    }

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

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

    @Override
    public byte removeKeyIfAbsent(K key, byte value)
    {
        throw new UnsupportedOperationException("Cannot call removeKeyIfAbsent() on " + this.getClass().getSimpleName());
    }

    @Override
    public byte getIfAbsentPut(K key, byte value)
    {
        return this.getIfAbsentThrow(key);
    }

    @Override
    public byte getIfAbsentPut(K key, ByteFunction0 function)
    {
        return this.getIfAbsentThrow(key);
    }

    @Override
    public byte getIfAbsentPutWithKey(K key, ByteFunction function)
    {
        return this.getIfAbsentThrow(key);
    }

    @Override
    public 

byte getIfAbsentPutWith(K key, ByteFunction function, P parameter) { return this.getIfAbsentThrow(key); } @Override public byte updateValue(K key, byte initialValueIfAbsent, ByteToByteFunction function) { throw new UnsupportedOperationException("Cannot call updateValue() on " + this.getClass().getSimpleName()); } public byte addToValue(K key, byte toBeAdded) { throw new UnsupportedOperationException("Cannot call addToValue() on " + this.getClass().getSimpleName()); } @Override public byte get(Object key) { return this.map.get(key); } @Override public byte getOrThrow(Object key) { return this.map.getOrThrow(key); } @Override public byte getIfAbsent(Object key, byte ifAbsent) { return this.map.getIfAbsent(key, ifAbsent); } @Override public boolean containsKey(Object key) { return this.map.containsKey(key); } @Override public boolean containsValue(byte value) { return this.map.containsValue(value); } @Override public void forEachValue(ByteProcedure procedure) { this.map.forEachValue(procedure); } @Override public void forEachKey(Procedure procedure) { this.map.forEachKey(procedure); } @Override public void forEachKeyValue(ObjectByteProcedure procedure) { this.map.forEachKeyValue(procedure); } @Override public MutableObjectByteMap select(ObjectBytePredicate predicate) { return this.map.select(predicate); } @Override public MutableObjectByteMap reject(ObjectBytePredicate predicate) { return this.map.reject(predicate); } @Override public MutableByteIterator byteIterator() { return new UnmodifiableByteIterator(this.map.byteIterator()); } /** * @since 7.0. */ @Override public void each(ByteProcedure procedure) { this.map.forEach(procedure); } @Override public int count(BytePredicate predicate) { return this.map.count(predicate); } @Override public boolean anySatisfy(BytePredicate predicate) { return this.map.anySatisfy(predicate); } @Override public boolean allSatisfy(BytePredicate predicate) { return this.map.allSatisfy(predicate); } @Override public boolean noneSatisfy(BytePredicate predicate) { return this.map.noneSatisfy(predicate); } @Override public MutableByteCollection select(BytePredicate predicate) { return this.map.select(predicate); } @Override public MutableByteCollection reject(BytePredicate predicate) { return this.map.reject(predicate); } @Override public byte detectIfNone(BytePredicate predicate, byte ifNone) { return this.map.detectIfNone(predicate, ifNone); } @Override public MutableCollection collect(ByteToObjectFunction function) { return this.map.collect(function); } @Override public long sum() { return this.map.sum(); } @Override public byte max() { return this.map.max(); } @Override public byte maxIfEmpty(byte defaultValue) { return this.map.maxIfEmpty(defaultValue); } @Override public byte min() { return this.map.min(); } @Override public byte minIfEmpty(byte defaultValue) { return this.map.minIfEmpty(defaultValue); } @Override public double average() { return this.map.average(); } @Override public double median() { return this.map.median(); } @Override public byte[] toSortedArray() { return this.map.toSortedArray(); } @Override public MutableByteList toSortedList() { return this.map.toSortedList(); } @Override public byte[] toArray() { return this.map.toArray(); } @Override public byte[] toArray(byte[] target) { return this.map.toArray(target); } @Override public boolean contains(byte value) { return this.map.contains(value); } @Override public boolean containsAll(byte... source) { return this.map.containsAll(source); } @Override public boolean containsAll(ByteIterable source) { return this.map.containsAll(source); } @Override public MutableByteList toList() { return this.map.toList(); } @Override public MutableByteSet toSet() { return this.map.toSet(); } @Override public MutableByteBag toBag() { return this.map.toBag(); } @Override public LazyByteIterable asLazy() { return this.map.asLazy(); } @Override public MutableObjectByteMap withKeyValue(K key, byte value) { throw new UnsupportedOperationException("Cannot call withKeyValue() on " + this.getClass().getSimpleName()); } @Override public MutableObjectByteMap withoutKey(K key) { throw new UnsupportedOperationException("Cannot call withoutKey() on " + this.getClass().getSimpleName()); } @Override public MutableObjectByteMap withoutAllKeys(Iterable keys) { throw new UnsupportedOperationException("Cannot call withoutAllKeys() on " + this.getClass().getSimpleName()); } @Override public MutableObjectByteMap asUnmodifiable() { return this; } @Override public MutableObjectByteMap asSynchronized() { return new SynchronizedObjectByteMap<>(this); } @Override public ImmutableObjectByteMap toImmutable() { return ObjectByteMaps.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 Set keySet() { return Collections.unmodifiableSet(this.map.keySet()); } @Override public MutableByteCollection values() { return UnmodifiableByteCollection.of(this.map.values()); } @Override public LazyIterable keysView() { return this.map.keysView(); } @Override public RichIterable> keyValuesView() { return this.map.keyValuesView(); } @Override public MutableByteObjectMap flipUniqueValues() { return this.map.flipUniqueValues().asUnmodifiable(); } @Override public boolean equals(Object obj) { return this.map.equals(obj); } @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 injectInto(T injectedValue, ObjectByteToObjectFunction function) { return this.map.injectInto(injectedValue, function); } @Override public RichIterable chunk(int size) { return this.map.chunk(size); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy