/*
 * Copyright (c) 2018 Goldman Sachs.
 * 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.immutable.primitive;

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

import org.eclipse.collections.api.CharIterable;
import org.eclipse.collections.api.LazyCharIterable;
import org.eclipse.collections.api.LazyIterable;
import org.eclipse.collections.api.RichIterable;
import org.eclipse.collections.api.bag.primitive.MutableCharBag;
import org.eclipse.collections.api.block.function.primitive.CharToObjectFunction;
import org.eclipse.collections.api.block.function.primitive.ObjectCharToObjectFunction;
import org.eclipse.collections.api.block.predicate.primitive.CharPredicate;
import org.eclipse.collections.api.block.predicate.primitive.ObjectCharPredicate;
import org.eclipse.collections.api.block.procedure.Procedure;
import org.eclipse.collections.api.block.procedure.primitive.CharProcedure;
import org.eclipse.collections.api.block.procedure.primitive.ObjectCharProcedure;
import org.eclipse.collections.api.list.MutableList;
import org.eclipse.collections.api.map.primitive.ObjectCharMap;
import org.eclipse.collections.api.collection.ImmutableCollection;
import org.eclipse.collections.api.collection.MutableCollection;
import org.eclipse.collections.api.collection.primitive.ImmutableCharCollection;
import org.eclipse.collections.api.collection.primitive.MutableCharCollection;
import org.eclipse.collections.api.iterator.CharIterator;
import org.eclipse.collections.api.list.primitive.MutableCharList;
import org.eclipse.collections.api.map.primitive.ImmutableObjectCharMap;
import org.eclipse.collections.api.map.primitive.ImmutableCharObjectMap;
import org.eclipse.collections.api.map.primitive.MutableObjectCharMap;
import org.eclipse.collections.api.map.primitive.MutableCharObjectMap;
import org.eclipse.collections.api.set.primitive.MutableCharSet;
import org.eclipse.collections.api.tuple.primitive.ObjectCharPair;
import org.eclipse.collections.impl.collection.mutable.primitive.UnmodifiableCharCollection;
import org.eclipse.collections.impl.factory.Lists;
import org.eclipse.collections.impl.factory.primitive.CharBags;
import org.eclipse.collections.impl.iterator.UnmodifiableCharIterator;
import org.eclipse.collections.impl.map.mutable.primitive.ObjectCharHashMap;
import org.eclipse.collections.impl.factory.primitive.CharObjectMaps;
import org.eclipse.collections.impl.set.mutable.UnmodifiableMutableSet;

ImmutableObjectCharHashMap is the non-modifiable equivalent of ObjectCharHashMap. This file was automatically generated from template file immutableObjectPrimitiveHashMap.stg.
Since:4.0.
/** * ImmutableObjectCharHashMap is the non-modifiable equivalent of {@link ObjectCharHashMap}. * This file was automatically generated from template file immutableObjectPrimitiveHashMap.stg. * * @since 4.0. */
final class ImmutableObjectCharHashMap<K> extends AbstractImmutableObjectCharMap<K> implements Serializable { private static final long serialVersionUID = 1L; private final MutableObjectCharMap<K> delegate; ImmutableObjectCharHashMap(ObjectCharMap<? extends K> delegate) { this.delegate = new ObjectCharHashMap<>(delegate); } @Override public CharIterator charIterator() { return new UnmodifiableCharIterator(this.delegate.charIterator()); } @Override public void forEach(CharProcedure procedure) { this.each(procedure); }
Since:7.0.
/** * @since 7.0. */
@Override public void each(CharProcedure procedure) { this.delegate.forEach(procedure); } @Override public int count(CharPredicate predicate) { return this.delegate.count(predicate); } @Override public boolean anySatisfy(CharPredicate predicate) { return this.delegate.anySatisfy(predicate); } @Override public boolean allSatisfy(CharPredicate predicate) { return this.delegate.allSatisfy(predicate); } @Override public boolean noneSatisfy(CharPredicate predicate) { return this.delegate.noneSatisfy(predicate); } @Override public ImmutableCharCollection select(CharPredicate predicate) { return this.delegate.select(predicate).toImmutable(); } @Override public ImmutableCharCollection reject(CharPredicate predicate) { return this.delegate.reject(predicate).toImmutable(); } @Override public char detectIfNone(CharPredicate predicate, char ifNone) { return this.delegate.detectIfNone(predicate, ifNone); } @Override public <T> T injectInto(T injectedValue, ObjectCharToObjectFunction<? super T, ? extends T> function) { return this.delegate.injectInto(injectedValue, function); } @Override public RichIterable<CharIterable> chunk(int size) { if (size <= 0) { throw new IllegalArgumentException("Size for groups must be positive but was: " + size); } MutableList<CharIterable> result = Lists.mutable.empty(); if (this.notEmpty()) { CharIterator iterator = this.charIterator(); while (iterator.hasNext()) { MutableCharBag batch = CharBags.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(CharToObjectFunction<? extends V> function) { MutableCollection<V> collection = this.delegate.collect(function); return collection.toImmutable(); } @Override public long sum() { return this.delegate.sum(); } @Override public char max() { return this.delegate.max(); } @Override public char maxIfEmpty(char defaultValue) { return this.delegate.maxIfEmpty(defaultValue); } @Override public char min() { return this.delegate.min(); } @Override public char minIfEmpty(char defaultValue) { return this.delegate.minIfEmpty(defaultValue); } @Override public double average() { return this.delegate.average(); } @Override public double median() { return this.delegate.median(); } @Override public char[] toSortedArray() { return this.delegate.toSortedArray(); } @Override public MutableCharList toSortedList() { return this.delegate.toSortedList(); } @Override public char[] toArray() { return this.delegate.toArray(); } @Override public boolean contains(char value) { return this.delegate.contains(value); } @Override public boolean containsAll(char... source) { return this.delegate.containsAll(source); } @Override public boolean containsAll(CharIterable source) { return this.delegate.containsAll(source); } @Override public MutableCharList toList() { return this.delegate.toList(); } @Override public MutableCharSet toSet() { return this.delegate.toSet(); } @Override public MutableCharBag toBag() { return this.delegate.toBag(); } @Override public LazyCharIterable asLazy() { return this.delegate.asLazy(); } @Override public ImmutableObjectCharMap<K> newWithKeyValue(K key, char value) { ObjectCharHashMap<K> map = ObjectCharHashMap.newMap(); map.putAll(this); map.put(key, value); return map.toImmutable(); } @Override public ImmutableObjectCharMap<K> newWithoutKey(K key) { ObjectCharHashMap<K> map = ObjectCharHashMap.newMap(); map.putAll(this); map.removeKey(key); return map.toImmutable(); } @Override public ImmutableObjectCharMap<K> newWithoutAllKeys(Iterable<? extends K> keys) { ObjectCharHashMap<K> map = ObjectCharHashMap.newMap(); map.putAll(this); Iterator<? extends K> iterator = keys.iterator(); while (iterator.hasNext()) { map.removeKey(iterator.next()); } return map.toImmutable(); } @Override public char get(Object key) { return this.delegate.get(key); } @Override public char getOrThrow(Object key) { return this.delegate.getOrThrow(key); } @Override public char getIfAbsent(Object key, char ifAbsent) { return this.delegate.getIfAbsent(key, ifAbsent); } @Override public boolean containsKey(Object key) { return this.delegate.containsKey(key); } @Override public boolean containsValue(char value) { return this.delegate.containsValue(value); } @Override public void forEachValue(CharProcedure procedure) { this.delegate.forEachValue(procedure); } @Override public void forEachKey(Procedure<? super K> procedure) { this.delegate.forEachKey(procedure); } @Override public void forEachKeyValue(ObjectCharProcedure<? super K> objectCharProcedure) { this.delegate.forEachKeyValue(objectCharProcedure); } @Override public ImmutableObjectCharMap<K> select(ObjectCharPredicate<? super K> objectCharPredicate) { return this.delegate.select(objectCharPredicate).toImmutable(); } @Override public ImmutableObjectCharMap<K> reject(ObjectCharPredicate<? super K> objectCharPredicate) { return this.delegate.reject(objectCharPredicate).toImmutable(); } @Override public ImmutableObjectCharMap<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 MutableCharCollection values() { return UnmodifiableCharCollection.of(this.delegate.values()); } @Override public LazyIterable<K> keysView() { return this.delegate.keysView(); } @Override public RichIterable<ObjectCharPair<K>> keyValuesView() { return this.delegate.keyValuesView(); } @Override public ImmutableCharObjectMap<K> flipUniqueValues() { MutableCharObjectMap<K> result = CharObjectMaps.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 ImmutableObjectCharMapSerializationProxy<K>(this); } }