com.koloboke.collect.impl.hash.QHashObjSetFactoryImpl 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.Equivalence;
import com.koloboke.collect.hash.*;
import com.koloboke.collect.set.hash.HashObjSetFactory;
import javax.annotation.Nonnull;
public final class QHashObjSetFactoryImpl extends QHashObjSetFactoryGO {
/** For ServiceLoader */
public QHashObjSetFactoryImpl() {
this(HashConfig.getDefault(), 10, false);
}
public QHashObjSetFactoryImpl(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed) {
super(hashConf, defaultExpectedSize, isNullKeyAllowed);
}
@SuppressWarnings("unchecked")
@Override
@Nonnull
public HashObjSetFactory withEquivalence(@Nonnull Equivalence super E> equivalence) {
if (equivalence.equals(Equivalence.defaultEquality())) {
return (HashObjSetFactory) this;
}
return new WithCustomEquivalence(getHashConfig(), getDefaultExpectedSize(), isNullKeyAllowed(), (Equivalence) equivalence);
}
@Override
@Nonnull
public HashObjSetFactory withNullKeyAllowed(boolean nullAllowed) {
if (nullAllowed == isNullKeyAllowed())
return this;
return thisWith(getHashConfig(), getDefaultExpectedSize(), nullAllowed);
}
@Override
HashObjSetFactory thisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed) {
return new QHashObjSetFactoryImpl(hashConf, defaultExpectedSize, isNullKeyAllowed);
}
@Override
HashObjSetFactory qHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed) {
return new QHashObjSetFactoryImpl(hashConf, defaultExpectedSize, isNullKeyAllowed);
}
@Override
HashObjSetFactory lHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed) {
return new LHashObjSetFactoryImpl(hashConf, defaultExpectedSize, isNullKeyAllowed);
}
static final class WithCustomEquivalence extends QHashObjSetFactoryGO {
final Equivalence equivalence;
public WithCustomEquivalence(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed, Equivalence equivalence) {
super(hashConf, defaultExpectedSize, isNullKeyAllowed);
this.equivalence = equivalence;
}
@Override
@Nonnull
public Equivalence getEquivalence() {
return equivalence;
}
@Override
MutableQHashObjSetGO uninitializedMutableSet() {
MutableQHashObjSet.WithCustomEquivalence set =
new MutableQHashObjSet.WithCustomEquivalence();
set.equivalence = equivalence;
return set;
}
@Override
UpdatableQHashObjSetGO uninitializedUpdatableSet() {
UpdatableQHashObjSet.WithCustomEquivalence set =
new UpdatableQHashObjSet.WithCustomEquivalence();
set.equivalence = equivalence;
return set;
}
@Override
ImmutableQHashObjSetGO uninitializedImmutableSet() {
ImmutableQHashObjSet.WithCustomEquivalence set =
new ImmutableQHashObjSet.WithCustomEquivalence();
set.equivalence = equivalence;
return set;
}
@SuppressWarnings("unchecked")
@Override
@Nonnull
public HashObjSetFactory withEquivalence(@Nonnull Equivalence super E> equivalence) {
if (equivalence.equals(Equivalence.defaultEquality()))
return new QHashObjSetFactoryImpl(getHashConfig(), getDefaultExpectedSize(), isNullKeyAllowed());
if (this.equivalence.equals(equivalence)) {
return (HashObjSetFactory) this;
}
return new WithCustomEquivalence(getHashConfig(), getDefaultExpectedSize(), isNullKeyAllowed(), (Equivalence) equivalence);
}
@Override
@Nonnull
public HashObjSetFactory withNullKeyAllowed(boolean nullAllowed) {
if (nullAllowed == isNullKeyAllowed())
return this;
return thisWith(getHashConfig(), getDefaultExpectedSize(), nullAllowed);
}
@Override
HashObjSetFactory thisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed) {
return new WithCustomEquivalence(hashConf, defaultExpectedSize, isNullKeyAllowed, equivalence);
}
@Override
HashObjSetFactory qHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed) {
return new QHashObjSetFactoryImpl.WithCustomEquivalence(
hashConf, defaultExpectedSize, isNullKeyAllowed, equivalence);
}
@Override
HashObjSetFactory lHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed) {
return new LHashObjSetFactoryImpl.WithCustomEquivalence(
hashConf, defaultExpectedSize, isNullKeyAllowed, equivalence);
}
}
}