com.koloboke.collect.impl.hash.QHashSeparateKVObjLongMapFactoryImpl 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.*;
import com.koloboke.collect.map.hash.*;
import javax.annotation.Nonnull;
public final class QHashSeparateKVObjLongMapFactoryImpl
extends QHashSeparateKVObjLongMapFactoryGO {
/** For ServiceLoader */
public QHashSeparateKVObjLongMapFactoryImpl() {
this(HashConfig.getDefault(), 10
, false
);
}
QHashSeparateKVObjLongMapFactoryImpl(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
) {
super(hashConf, defaultExpectedSize, isNullKeyAllowed
);
}
@Override
HashObjLongMapFactory thisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
) {
return new QHashSeparateKVObjLongMapFactoryImpl(hashConf, defaultExpectedSize, isNullKeyAllowed
);
}
@Override
HashObjLongMapFactory qHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
) {
return new QHashSeparateKVObjLongMapFactoryImpl(hashConf, defaultExpectedSize, isNullKeyAllowed
);
}
@Override
HashObjLongMapFactory lHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
) {
return new LHashSeparateKVObjLongMapFactoryImpl(hashConf, defaultExpectedSize, isNullKeyAllowed
);
}
@SuppressWarnings("unchecked")
@Override
@Nonnull
public HashObjLongMapFactory withKeyEquivalence(
@Nonnull Equivalence super K> keyEquivalence) {
if (keyEquivalence.equals(Equivalence.defaultEquality())) {
return (HashObjLongMapFactory) this;
}
return new WithCustomKeyEquivalence(getHashConfig(), getDefaultExpectedSize()
, isNullKeyAllowed(),
(Equivalence) keyEquivalence);
}
@Override
@Nonnull
public HashObjLongMapFactory withDefaultValue(long defaultValue) {
if (defaultValue == 0L)
return this;
return new WithCustomDefaultValue(getHashConfig(), getDefaultExpectedSize()
, isNullKeyAllowed(), defaultValue);
}
static class WithCustomKeyEquivalence
extends QHashSeparateKVObjLongMapFactoryGO {
private final Equivalence keyEquivalence;
WithCustomKeyEquivalence(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
, Equivalence keyEquivalence) {
super(hashConf, defaultExpectedSize, isNullKeyAllowed
);
this.keyEquivalence = keyEquivalence;
}
@Override
@Nonnull
public Equivalence getKeyEquivalence() {
return keyEquivalence;
}
@Override
MutableQHashSeparateKVObjLongMapGO
uninitializedMutableMap() {
MutableQHashSeparateKVObjLongMap.WithCustomKeyEquivalence map =
new MutableQHashSeparateKVObjLongMap.WithCustomKeyEquivalence();
map.keyEquivalence = keyEquivalence;
return map;
}
@Override
UpdatableQHashSeparateKVObjLongMapGO
uninitializedUpdatableMap() {
UpdatableQHashSeparateKVObjLongMap.WithCustomKeyEquivalence map =
new UpdatableQHashSeparateKVObjLongMap.WithCustomKeyEquivalence();
map.keyEquivalence = keyEquivalence;
return map;
}
@Override
ImmutableQHashSeparateKVObjLongMapGO
uninitializedImmutableMap() {
ImmutableQHashSeparateKVObjLongMap.WithCustomKeyEquivalence map =
new ImmutableQHashSeparateKVObjLongMap.WithCustomKeyEquivalence();
map.keyEquivalence = keyEquivalence;
return map;
}
@SuppressWarnings("unchecked")
@Override
@Nonnull
public HashObjLongMapFactory withKeyEquivalence(
@Nonnull Equivalence super K> keyEquivalence) {
if (keyEquivalence.equals(Equivalence.defaultEquality()))
return new QHashSeparateKVObjLongMapFactoryImpl(getHashConfig(), getDefaultExpectedSize()
, isNullKeyAllowed());
if (keyEquivalence.equals(this.keyEquivalence)) {
return (HashObjLongMapFactory) this;
}
return new WithCustomKeyEquivalence(getHashConfig(), getDefaultExpectedSize()
, isNullKeyAllowed(),
(Equivalence) keyEquivalence);
}
@Override
@Nonnull
public HashObjLongMapFactory withDefaultValue(long defaultValue) {
if (defaultValue == 0L)
return this;
return new WithCustomKeyEquivalenceAndDefaultValue(
getHashConfig(), getDefaultExpectedSize()
, isNullKeyAllowed(), keyEquivalence, defaultValue);
}
@Override
HashObjLongMapFactory thisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
) {
return new WithCustomKeyEquivalence(hashConf, defaultExpectedSize, isNullKeyAllowed
, keyEquivalence);
}
@Override
HashObjLongMapFactory qHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
) {
return new QHashSeparateKVObjLongMapFactoryImpl.WithCustomKeyEquivalence(
hashConf, defaultExpectedSize, isNullKeyAllowed
, keyEquivalence);
}
@Override
HashObjLongMapFactory lHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
) {
return new LHashSeparateKVObjLongMapFactoryImpl.WithCustomKeyEquivalence(
hashConf, defaultExpectedSize, isNullKeyAllowed
, keyEquivalence);
}
}
static final class WithCustomDefaultValue
extends QHashSeparateKVObjLongMapFactoryGO {
private final long defaultValue;
WithCustomDefaultValue(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
, long defaultValue) {
super(hashConf, defaultExpectedSize, isNullKeyAllowed
);
this.defaultValue = defaultValue;
}
@Override
public long getDefaultValue() {
return defaultValue;
}
@Override
MutableQHashSeparateKVObjLongMapGO uninitializedMutableMap() {
MutableQHashSeparateKVObjLongMap.WithCustomDefaultValue map =
new MutableQHashSeparateKVObjLongMap.WithCustomDefaultValue();
map.defaultValue = defaultValue;
return map;
}
@Override
UpdatableQHashSeparateKVObjLongMapGO uninitializedUpdatableMap() {
UpdatableQHashSeparateKVObjLongMap.WithCustomDefaultValue map =
new UpdatableQHashSeparateKVObjLongMap.WithCustomDefaultValue();
map.defaultValue = defaultValue;
return map;
}
@Override
ImmutableQHashSeparateKVObjLongMapGO uninitializedImmutableMap() {
ImmutableQHashSeparateKVObjLongMap.WithCustomDefaultValue map =
new ImmutableQHashSeparateKVObjLongMap.WithCustomDefaultValue();
map.defaultValue = defaultValue;
return map;
}
@SuppressWarnings("unchecked")
@Override
@Nonnull
public HashObjLongMapFactory withKeyEquivalence(
@Nonnull Equivalence super K> keyEquivalence) {
if (keyEquivalence.equals(Equivalence.defaultEquality())) {
return (HashObjLongMapFactory) this;
}
return new WithCustomKeyEquivalenceAndDefaultValue(getHashConfig(), getDefaultExpectedSize()
, isNullKeyAllowed(),
(Equivalence) keyEquivalence, defaultValue);
}
@Override
@Nonnull
public HashObjLongMapFactory withDefaultValue(long defaultValue) {
if (defaultValue == 0L)
return new QHashSeparateKVObjLongMapFactoryImpl(getHashConfig(), getDefaultExpectedSize()
, isNullKeyAllowed());
if (defaultValue == this.defaultValue)
return this;
return new WithCustomDefaultValue(getHashConfig(), getDefaultExpectedSize()
, isNullKeyAllowed(), defaultValue);
}
@Override
HashObjLongMapFactory thisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
) {
return new WithCustomDefaultValue(hashConf, defaultExpectedSize, isNullKeyAllowed
, defaultValue);
}
@Override
HashObjLongMapFactory qHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
) {
return new QHashSeparateKVObjLongMapFactoryImpl.WithCustomDefaultValue(
hashConf, defaultExpectedSize, isNullKeyAllowed
, defaultValue);
}
@Override
HashObjLongMapFactory lHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
) {
return new LHashSeparateKVObjLongMapFactoryImpl.WithCustomDefaultValue(
hashConf, defaultExpectedSize, isNullKeyAllowed
, defaultValue);
}
}
static final class WithCustomKeyEquivalenceAndDefaultValue
extends QHashSeparateKVObjLongMapFactoryGO {
private final Equivalence keyEquivalence;
private final long defaultValue;
WithCustomKeyEquivalenceAndDefaultValue(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
,
Equivalence keyEquivalence, long defaultValue) {
super(hashConf, defaultExpectedSize, isNullKeyAllowed
);
this.keyEquivalence = keyEquivalence;
this.defaultValue = defaultValue;
}
@Override
@Nonnull
public Equivalence getKeyEquivalence() {
return keyEquivalence;
}
@Override
public long getDefaultValue() {
return defaultValue;
}
@Override
MutableQHashSeparateKVObjLongMapGO uninitializedMutableMap() {
MutableQHashSeparateKVObjLongMap.WithCustomKeyEquivalenceAndDefaultValue map =
new MutableQHashSeparateKVObjLongMap
.WithCustomKeyEquivalenceAndDefaultValue();
map.keyEquivalence = keyEquivalence;
map.defaultValue = defaultValue;
return map;
}
@Override
UpdatableQHashSeparateKVObjLongMapGO uninitializedUpdatableMap() {
UpdatableQHashSeparateKVObjLongMap.WithCustomKeyEquivalenceAndDefaultValue map =
new UpdatableQHashSeparateKVObjLongMap
.WithCustomKeyEquivalenceAndDefaultValue();
map.keyEquivalence = keyEquivalence;
map.defaultValue = defaultValue;
return map;
}
@Override
ImmutableQHashSeparateKVObjLongMapGO uninitializedImmutableMap() {
ImmutableQHashSeparateKVObjLongMap.WithCustomKeyEquivalenceAndDefaultValue map =
new ImmutableQHashSeparateKVObjLongMap
.WithCustomKeyEquivalenceAndDefaultValue();
map.keyEquivalence = keyEquivalence;
map.defaultValue = defaultValue;
return map;
}
@SuppressWarnings("unchecked")
@Override
@Nonnull
public HashObjLongMapFactory withKeyEquivalence(
@Nonnull Equivalence super K> keyEquivalence) {
if (keyEquivalence.equals(Equivalence.defaultEquality()))
return new WithCustomDefaultValue(getHashConfig(), getDefaultExpectedSize()
, isNullKeyAllowed(), defaultValue);
if (keyEquivalence.equals(this.keyEquivalence)) {
return (HashObjLongMapFactory) this;
}
return new WithCustomKeyEquivalenceAndDefaultValue(
getHashConfig(), getDefaultExpectedSize()
, isNullKeyAllowed(), (Equivalence) keyEquivalence, defaultValue);
}
@Override
@Nonnull
public HashObjLongMapFactory withDefaultValue(long defaultValue) {
if (defaultValue == 0L)
return new WithCustomKeyEquivalence(getHashConfig(), getDefaultExpectedSize()
, isNullKeyAllowed(), keyEquivalence);
if (defaultValue == this.defaultValue)
return this;
return new WithCustomKeyEquivalenceAndDefaultValue(
getHashConfig(), getDefaultExpectedSize()
, isNullKeyAllowed(), keyEquivalence, defaultValue);
}
@Override
HashObjLongMapFactory thisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
) {
return new WithCustomKeyEquivalenceAndDefaultValue(hashConf, defaultExpectedSize, isNullKeyAllowed
,
keyEquivalence, defaultValue);
}
@Override
HashObjLongMapFactory qHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
) {
return new QHashSeparateKVObjLongMapFactoryImpl
.WithCustomKeyEquivalenceAndDefaultValue(hashConf, defaultExpectedSize, isNullKeyAllowed
,
keyEquivalence, defaultValue);
}
@Override
HashObjLongMapFactory lHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
) {
return new LHashSeparateKVObjLongMapFactoryImpl
.WithCustomKeyEquivalenceAndDefaultValue(hashConf, defaultExpectedSize, isNullKeyAllowed
,
keyEquivalence, defaultValue);
}
}
}