com.gs.collections.impl.map.mutable.primitive.UnmodifiableCharBooleanMap 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.mutable.primitive;
import java.io.Serializable;
import com.gs.collections.api.BooleanIterable;
import com.gs.collections.api.CharIterable;
import com.gs.collections.api.LazyBooleanIterable;
import com.gs.collections.api.LazyCharIterable;
import com.gs.collections.api.RichIterable;
import com.gs.collections.api.bag.primitive.MutableBooleanBag;
import com.gs.collections.api.block.function.primitive.BooleanFunction;
import com.gs.collections.api.block.function.primitive.BooleanFunction0;
import com.gs.collections.api.block.function.primitive.BooleanToBooleanFunction;
import com.gs.collections.api.block.function.primitive.BooleanToObjectFunction;
import com.gs.collections.api.block.function.primitive.ObjectBooleanToObjectFunction;
import com.gs.collections.api.block.function.primitive.CharToBooleanFunction;
import com.gs.collections.api.block.predicate.primitive.BooleanPredicate;
import com.gs.collections.api.block.predicate.primitive.CharBooleanPredicate;
import com.gs.collections.api.block.procedure.primitive.BooleanProcedure;
import com.gs.collections.api.block.procedure.primitive.CharBooleanProcedure;
import com.gs.collections.api.block.procedure.primitive.CharProcedure;
import com.gs.collections.api.collection.MutableCollection;
import com.gs.collections.api.collection.primitive.MutableBooleanCollection;
import com.gs.collections.api.iterator.BooleanIterator;
import com.gs.collections.api.list.primitive.MutableBooleanList;
import com.gs.collections.api.map.primitive.ImmutableCharBooleanMap;
import com.gs.collections.api.map.primitive.CharBooleanMap;
import com.gs.collections.api.map.primitive.MutableCharBooleanMap;
import com.gs.collections.api.set.primitive.MutableCharSet;
import com.gs.collections.api.set.primitive.MutableBooleanSet;
import com.gs.collections.api.tuple.primitive.CharBooleanPair;
import com.gs.collections.impl.factory.primitive.CharBooleanMaps;
import com.gs.collections.impl.set.mutable.primitive.UnmodifiableCharSet;
import com.gs.collections.impl.collection.mutable.primitive.UnmodifiableBooleanCollection;
/**
* This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.
*
* @since 3.1.
*/
public final class UnmodifiableCharBooleanMap
implements MutableCharBooleanMap, Serializable
{
private static final long serialVersionUID = 1L;
private final MutableCharBooleanMap map;
UnmodifiableCharBooleanMap(MutableCharBooleanMap map)
{
this.map = map;
}
private boolean isAbsent(boolean result, char key)
{
return result == CharBooleanHashMap.EMPTY_VALUE && !this.containsKey(key);
}
private boolean getIfAbsentThrow(char key)
{
boolean result = this.map.get(key);
if (this.isAbsent(result, key))
{
throw new UnsupportedOperationException("Cannot call put() on " + this.getClass().getSimpleName());
}
return result;
}
public void clear()
{
throw new UnsupportedOperationException("Cannot call clear() on " + this.getClass().getSimpleName());
}
public void put(char key, boolean value)
{
throw new UnsupportedOperationException("Cannot call put() on " + this.getClass().getSimpleName());
}
public void putAll(CharBooleanMap map)
{
throw new UnsupportedOperationException("Cannot call putAll() on " + this.getClass().getSimpleName());
}
public void removeKey(char key)
{
throw new UnsupportedOperationException("Cannot call removeKey() on " + this.getClass().getSimpleName());
}
public void remove(char key)
{
throw new UnsupportedOperationException("Cannot call remove() on " + this.getClass().getSimpleName());
}
public boolean removeKeyIfAbsent(char key, boolean value)
{
if (this.map.containsKey(key))
{
throw new UnsupportedOperationException("Cannot call removeKey() on " + this.getClass().getSimpleName());
}
return value;
}
public boolean getIfAbsentPut(char key, boolean value)
{
return this.getIfAbsentThrow(key);
}
public boolean getIfAbsentPut(char key, BooleanFunction0 function)
{
return this.getIfAbsentThrow(key);
}
public boolean getIfAbsentPutWithKey(char key, CharToBooleanFunction function)
{
return this.getIfAbsentThrow(key);
}
public boolean getIfAbsentPutWith(char key, BooleanFunction super P> function, P parameter)
{
return this.getIfAbsentThrow(key);
}
public boolean updateValue(char key, boolean initialValueIfAbsent, BooleanToBooleanFunction function)
{
throw new UnsupportedOperationException("Cannot call updateValue() on " + this.getClass().getSimpleName());
}
public boolean get(char key)
{
return this.map.get(key);
}
public boolean getIfAbsent(char key, boolean ifAbsent)
{
return this.map.getIfAbsent(key, ifAbsent);
}
public boolean getOrThrow(char key)
{
return this.map.getOrThrow(key);
}
public boolean containsKey(char key)
{
return this.map.containsKey(key);
}
public boolean containsValue(boolean value)
{
return this.map.containsValue(value);
}
public void forEachValue(BooleanProcedure procedure)
{
this.map.forEachValue(procedure);
}
public void forEachKey(CharProcedure procedure)
{
this.map.forEachKey(procedure);
}
public void forEachKeyValue(CharBooleanProcedure procedure)
{
this.map.forEachKeyValue(procedure);
}
public LazyCharIterable keysView()
{
return this.map.keysView();
}
public RichIterable keyValuesView()
{
return this.map.keyValuesView();
}
public MutableCharBooleanMap select(CharBooleanPredicate predicate)
{
return this.map.select(predicate);
}
public MutableCharBooleanMap reject(CharBooleanPredicate predicate)
{
return this.map.reject(predicate);
}
public BooleanIterator booleanIterator()
{
return this.map.booleanIterator();
}
public void forEach(BooleanProcedure procedure)
{
this.map.forEach(procedure);
}
public int count(BooleanPredicate predicate)
{
return this.map.count(predicate);
}
public boolean anySatisfy(BooleanPredicate predicate)
{
return this.map.anySatisfy(predicate);
}
public boolean allSatisfy(BooleanPredicate predicate)
{
return this.map.allSatisfy(predicate);
}
public boolean noneSatisfy(BooleanPredicate predicate)
{
return this.map.noneSatisfy(predicate);
}
public MutableBooleanCollection select(BooleanPredicate predicate)
{
return this.map.select(predicate);
}
public MutableBooleanCollection reject(BooleanPredicate predicate)
{
return this.map.reject(predicate);
}
public boolean detectIfNone(BooleanPredicate predicate, boolean ifNone)
{
return this.map.detectIfNone(predicate, ifNone);
}
public MutableCollection collect(BooleanToObjectFunction extends V> function)
{
return this.map.collect(function);
}
public boolean[] toArray()
{
return this.map.toArray();
}
public boolean contains(boolean value)
{
return this.map.contains(value);
}
public boolean containsAll(boolean... source)
{
return this.map.containsAll(source);
}
public boolean containsAll(BooleanIterable source)
{
return this.map.containsAll(source);
}
public MutableBooleanList toList()
{
return this.map.toList();
}
public MutableBooleanSet toSet()
{
return this.map.toSet();
}
public MutableBooleanBag toBag()
{
return this.map.toBag();
}
public LazyBooleanIterable asLazy()
{
return this.map.asLazy();
}
public MutableCharBooleanMap withKeyValue(char key, boolean value)
{
throw new UnsupportedOperationException("Cannot call withKeyValue() on " + this.getClass().getSimpleName());
}
public MutableCharBooleanMap withoutKey(char key)
{
throw new UnsupportedOperationException("Cannot call withoutKey() on " + this.getClass().getSimpleName());
}
public MutableCharBooleanMap withoutAllKeys(CharIterable keys)
{
throw new UnsupportedOperationException("Cannot call withoutAllKeys() on " + this.getClass().getSimpleName());
}
public MutableCharBooleanMap asUnmodifiable()
{
return this;
}
public MutableCharBooleanMap asSynchronized()
{
return new SynchronizedCharBooleanMap(this);
}
public ImmutableCharBooleanMap toImmutable()
{
return CharBooleanMaps.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 MutableCharSet keySet()
{
return UnmodifiableCharSet.of(this.map.keySet());
}
public MutableBooleanCollection values()
{
return UnmodifiableBooleanCollection.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, ObjectBooleanToObjectFunction super T, ? extends T> function)
{
return this.map.injectInto(injectedValue, function);
}
}