com.koloboke.collect.impl.hash.ImmutableQHashParallelKVObjKeyMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of koloboke-impl-jdk8 Show documentation
Show all versions of koloboke-impl-jdk8 Show documentation
Carefully designed and efficient extension of the Java Collections Framework with primitive specializations and more, built for Java 8 (Implementation)
The newest version!
/*
* Copyright 2014 the original author or authors.
*
* 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.koloboke.collect.impl.hash;
import com.koloboke.collect.*;
import com.koloboke.collect.hash.HashConfig;
import java.util.function.Consumer;
import java.util.function.Predicate;
import java.util.function.Consumer;
import java.util.function.Predicate;
import com.koloboke.collect.impl.*;
import com.koloboke.collect.set.ObjSet;
import com.koloboke.collect.set.hash.HashObjSet;
import javax.annotation.Nonnull;
import java.util.*;
public abstract class ImmutableQHashParallelKVObjKeyMap
extends ImmutableParallelKVObjQHashGO {
public Equivalence keyEquivalence() {
return Equivalence.defaultEquality();
}
public final boolean containsKey(Object key) {
return contains(key);
}
@Nonnull
public HashObjSet keySet() {
return new KeyView();
}
abstract boolean justRemove(Object key);
class KeyView extends AbstractObjKeyView
implements HashObjSet, InternalObjCollectionOps, ParallelKVObjQHash {
@Override
@Nonnull
public Equivalence equivalence() {
return ImmutableQHashParallelKVObjKeyMap.this.keyEquivalence();
}
@Nonnull
@Override
public HashConfig hashConfig() {
return ImmutableQHashParallelKVObjKeyMap.this.hashConfig();
}
@Override
public HashConfigWrapper configWrapper() {
return ImmutableQHashParallelKVObjKeyMap.this.configWrapper();
}
@Override
public int size() {
return ImmutableQHashParallelKVObjKeyMap.this.size();
}
@Override
public double currentLoad() {
return ImmutableQHashParallelKVObjKeyMap.this.currentLoad();
}
@Nonnull
@Override
public Object[] table() {
return ImmutableQHashParallelKVObjKeyMap.this.table();
}
@Override
public int capacity() {
return ImmutableQHashParallelKVObjKeyMap.this.capacity();
}
@Override
public int freeSlots() {
return ImmutableQHashParallelKVObjKeyMap.this.freeSlots();
}
@Override
public boolean noRemoved() {
return ImmutableQHashParallelKVObjKeyMap.this.noRemoved();
}
@Override
public int removedSlots() {
return ImmutableQHashParallelKVObjKeyMap.this.removedSlots();
}
@Override
public int modCount() {
// not calling outer class modCount() to let Compile remove outer that method
// if never used elsewhere
return 0;
}
@Override
public final boolean contains(Object o) {
return ImmutableQHashParallelKVObjKeyMap.this.contains(o);
}
@Override
public void forEach(Consumer super K> action) {
ImmutableQHashParallelKVObjKeyMap.this.forEach(action);
}
@Override
public boolean forEachWhile(Predicate super K>
predicate) {
return ImmutableQHashParallelKVObjKeyMap.this.forEachWhile(predicate);
}
@Override
public boolean allContainingIn(ObjCollection> c) {
return ImmutableQHashParallelKVObjKeyMap.this.allContainingIn(c);
}
@Override
public boolean reverseAddAllTo(ObjCollection super K> c) {
return ImmutableQHashParallelKVObjKeyMap.this.reverseAddAllTo(c);
}
@Override
public boolean reverseRemoveAllFrom(ObjSet> s) {
return ImmutableQHashParallelKVObjKeyMap.this.reverseRemoveAllFrom(s);
}
@Override
@Nonnull
public ObjIterator iterator() {
return ImmutableQHashParallelKVObjKeyMap.this.iterator();
}
@Override
@Nonnull
public ObjCursor cursor() {
return setCursor();
}
@Override
@Nonnull
public Object[] toArray() {
return ImmutableQHashParallelKVObjKeyMap.this.toArray();
}
@Override
@Nonnull
public T[] toArray(@Nonnull T[] a) {
return ImmutableQHashParallelKVObjKeyMap.this.toArray(a);
}
@Override
public int hashCode() {
return setHashCode();
}
@Override
public String toString() {
return setToString();
}
@Override
public boolean shrink() {
return ImmutableQHashParallelKVObjKeyMap.this.shrink();
}
@Override
public final boolean remove(Object o) {
return justRemove(o);
}
@Override
public boolean removeIf(Predicate super K> filter) {
return ImmutableQHashParallelKVObjKeyMap.this.removeIf(filter);
}
@SuppressWarnings("unchecked")
@Override
public boolean removeAll(@Nonnull Collection> c) {
if (c instanceof InternalObjCollectionOps) {
InternalObjCollectionOps c2 = (InternalObjCollectionOps) c;
if (c2.size() < this.size()
&& equivalence().equals(c2.equivalence())
) {
return c2.reverseRemoveAllFrom(this);
}
}
return ImmutableQHashParallelKVObjKeyMap.this.removeAll(this, c);
}
@Override
public boolean retainAll(@Nonnull Collection> c) {
return ImmutableQHashParallelKVObjKeyMap.this.retainAll(this, c);
}
@Override
public void clear() {
ImmutableQHashParallelKVObjKeyMap.this.clear();
}
}
}