com.koloboke.collect.impl.hash.QHashSeparateKVObjByteMapFactoryImpl 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 QHashSeparateKVObjByteMapFactoryImpl
extends QHashSeparateKVObjByteMapFactoryGO {
/** For ServiceLoader */
public QHashSeparateKVObjByteMapFactoryImpl() {
this(HashConfig.getDefault(), 10
, false
);
}
QHashSeparateKVObjByteMapFactoryImpl(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
) {
super(hashConf, defaultExpectedSize, isNullKeyAllowed
);
}
@Override
HashObjByteMapFactory thisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
) {
return new QHashSeparateKVObjByteMapFactoryImpl(hashConf, defaultExpectedSize, isNullKeyAllowed
);
}
@Override
HashObjByteMapFactory qHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
) {
return new QHashSeparateKVObjByteMapFactoryImpl(hashConf, defaultExpectedSize, isNullKeyAllowed
);
}
@Override
HashObjByteMapFactory lHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
) {
return new LHashSeparateKVObjByteMapFactoryImpl(hashConf, defaultExpectedSize, isNullKeyAllowed
);
}
@SuppressWarnings("unchecked")
@Override
@Nonnull
public HashObjByteMapFactory withKeyEquivalence(
@Nonnull Equivalence super K> keyEquivalence) {
if (keyEquivalence.equals(Equivalence.defaultEquality())) {
return (HashObjByteMapFactory) this;
}
return new WithCustomKeyEquivalence(getHashConfig(), getDefaultExpectedSize()
, isNullKeyAllowed(),
(Equivalence) keyEquivalence);
}
@Override
@Nonnull
public HashObjByteMapFactory withDefaultValue(byte defaultValue) {
if (defaultValue == (byte) 0)
return this;
return new WithCustomDefaultValue(getHashConfig(), getDefaultExpectedSize()
, isNullKeyAllowed(), defaultValue);
}
static class WithCustomKeyEquivalence
extends QHashSeparateKVObjByteMapFactoryGO {
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
MutableQHashSeparateKVObjByteMapGO
uninitializedMutableMap() {
MutableQHashSeparateKVObjByteMap.WithCustomKeyEquivalence map =
new MutableQHashSeparateKVObjByteMap.WithCustomKeyEquivalence();
map.keyEquivalence = keyEquivalence;
return map;
}
@Override
UpdatableQHashSeparateKVObjByteMapGO
uninitializedUpdatableMap() {
UpdatableQHashSeparateKVObjByteMap.WithCustomKeyEquivalence map =
new UpdatableQHashSeparateKVObjByteMap.WithCustomKeyEquivalence();
map.keyEquivalence = keyEquivalence;
return map;
}
@Override
ImmutableQHashSeparateKVObjByteMapGO
uninitializedImmutableMap() {
ImmutableQHashSeparateKVObjByteMap.WithCustomKeyEquivalence map =
new ImmutableQHashSeparateKVObjByteMap.WithCustomKeyEquivalence();
map.keyEquivalence = keyEquivalence;
return map;
}
@SuppressWarnings("unchecked")
@Override
@Nonnull
public HashObjByteMapFactory withKeyEquivalence(
@Nonnull Equivalence super K> keyEquivalence) {
if (keyEquivalence.equals(Equivalence.defaultEquality()))
return new QHashSeparateKVObjByteMapFactoryImpl(getHashConfig(), getDefaultExpectedSize()
, isNullKeyAllowed());
if (keyEquivalence.equals(this.keyEquivalence)) {
return (HashObjByteMapFactory) this;
}
return new WithCustomKeyEquivalence(getHashConfig(), getDefaultExpectedSize()
, isNullKeyAllowed(),
(Equivalence) keyEquivalence);
}
@Override
@Nonnull
public HashObjByteMapFactory withDefaultValue(byte defaultValue) {
if (defaultValue == (byte) 0)
return this;
return new WithCustomKeyEquivalenceAndDefaultValue(
getHashConfig(), getDefaultExpectedSize()
, isNullKeyAllowed(), keyEquivalence, defaultValue);
}
@Override
HashObjByteMapFactory thisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
) {
return new WithCustomKeyEquivalence(hashConf, defaultExpectedSize, isNullKeyAllowed
, keyEquivalence);
}
@Override
HashObjByteMapFactory qHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
) {
return new QHashSeparateKVObjByteMapFactoryImpl.WithCustomKeyEquivalence(
hashConf, defaultExpectedSize, isNullKeyAllowed
, keyEquivalence);
}
@Override
HashObjByteMapFactory lHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
) {
return new LHashSeparateKVObjByteMapFactoryImpl.WithCustomKeyEquivalence(
hashConf, defaultExpectedSize, isNullKeyAllowed
, keyEquivalence);
}
}
static final class WithCustomDefaultValue
extends QHashSeparateKVObjByteMapFactoryGO {
private final byte defaultValue;
WithCustomDefaultValue(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
, byte defaultValue) {
super(hashConf, defaultExpectedSize, isNullKeyAllowed
);
this.defaultValue = defaultValue;
}
@Override
public byte getDefaultValue() {
return defaultValue;
}
@Override
MutableQHashSeparateKVObjByteMapGO uninitializedMutableMap() {
MutableQHashSeparateKVObjByteMap.WithCustomDefaultValue map =
new MutableQHashSeparateKVObjByteMap.WithCustomDefaultValue();
map.defaultValue = defaultValue;
return map;
}
@Override
UpdatableQHashSeparateKVObjByteMapGO uninitializedUpdatableMap() {
UpdatableQHashSeparateKVObjByteMap.WithCustomDefaultValue map =
new UpdatableQHashSeparateKVObjByteMap.WithCustomDefaultValue();
map.defaultValue = defaultValue;
return map;
}
@Override
ImmutableQHashSeparateKVObjByteMapGO uninitializedImmutableMap() {
ImmutableQHashSeparateKVObjByteMap.WithCustomDefaultValue map =
new ImmutableQHashSeparateKVObjByteMap.WithCustomDefaultValue();
map.defaultValue = defaultValue;
return map;
}
@SuppressWarnings("unchecked")
@Override
@Nonnull
public HashObjByteMapFactory withKeyEquivalence(
@Nonnull Equivalence super K> keyEquivalence) {
if (keyEquivalence.equals(Equivalence.defaultEquality())) {
return (HashObjByteMapFactory) this;
}
return new WithCustomKeyEquivalenceAndDefaultValue(getHashConfig(), getDefaultExpectedSize()
, isNullKeyAllowed(),
(Equivalence) keyEquivalence, defaultValue);
}
@Override
@Nonnull
public HashObjByteMapFactory withDefaultValue(byte defaultValue) {
if (defaultValue == (byte) 0)
return new QHashSeparateKVObjByteMapFactoryImpl(getHashConfig(), getDefaultExpectedSize()
, isNullKeyAllowed());
if (defaultValue == this.defaultValue)
return this;
return new WithCustomDefaultValue(getHashConfig(), getDefaultExpectedSize()
, isNullKeyAllowed(), defaultValue);
}
@Override
HashObjByteMapFactory thisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
) {
return new WithCustomDefaultValue(hashConf, defaultExpectedSize, isNullKeyAllowed
, defaultValue);
}
@Override
HashObjByteMapFactory qHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
) {
return new QHashSeparateKVObjByteMapFactoryImpl.WithCustomDefaultValue(
hashConf, defaultExpectedSize, isNullKeyAllowed
, defaultValue);
}
@Override
HashObjByteMapFactory lHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
) {
return new LHashSeparateKVObjByteMapFactoryImpl.WithCustomDefaultValue(
hashConf, defaultExpectedSize, isNullKeyAllowed
, defaultValue);
}
}
static final class WithCustomKeyEquivalenceAndDefaultValue
extends QHashSeparateKVObjByteMapFactoryGO {
private final Equivalence keyEquivalence;
private final byte defaultValue;
WithCustomKeyEquivalenceAndDefaultValue(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
,
Equivalence keyEquivalence, byte defaultValue) {
super(hashConf, defaultExpectedSize, isNullKeyAllowed
);
this.keyEquivalence = keyEquivalence;
this.defaultValue = defaultValue;
}
@Override
@Nonnull
public Equivalence getKeyEquivalence() {
return keyEquivalence;
}
@Override
public byte getDefaultValue() {
return defaultValue;
}
@Override
MutableQHashSeparateKVObjByteMapGO uninitializedMutableMap() {
MutableQHashSeparateKVObjByteMap.WithCustomKeyEquivalenceAndDefaultValue map =
new MutableQHashSeparateKVObjByteMap
.WithCustomKeyEquivalenceAndDefaultValue();
map.keyEquivalence = keyEquivalence;
map.defaultValue = defaultValue;
return map;
}
@Override
UpdatableQHashSeparateKVObjByteMapGO uninitializedUpdatableMap() {
UpdatableQHashSeparateKVObjByteMap.WithCustomKeyEquivalenceAndDefaultValue map =
new UpdatableQHashSeparateKVObjByteMap
.WithCustomKeyEquivalenceAndDefaultValue();
map.keyEquivalence = keyEquivalence;
map.defaultValue = defaultValue;
return map;
}
@Override
ImmutableQHashSeparateKVObjByteMapGO uninitializedImmutableMap() {
ImmutableQHashSeparateKVObjByteMap.WithCustomKeyEquivalenceAndDefaultValue map =
new ImmutableQHashSeparateKVObjByteMap
.WithCustomKeyEquivalenceAndDefaultValue();
map.keyEquivalence = keyEquivalence;
map.defaultValue = defaultValue;
return map;
}
@SuppressWarnings("unchecked")
@Override
@Nonnull
public HashObjByteMapFactory withKeyEquivalence(
@Nonnull Equivalence super K> keyEquivalence) {
if (keyEquivalence.equals(Equivalence.defaultEquality()))
return new WithCustomDefaultValue(getHashConfig(), getDefaultExpectedSize()
, isNullKeyAllowed(), defaultValue);
if (keyEquivalence.equals(this.keyEquivalence)) {
return (HashObjByteMapFactory) this;
}
return new WithCustomKeyEquivalenceAndDefaultValue(
getHashConfig(), getDefaultExpectedSize()
, isNullKeyAllowed(), (Equivalence) keyEquivalence, defaultValue);
}
@Override
@Nonnull
public HashObjByteMapFactory withDefaultValue(byte defaultValue) {
if (defaultValue == (byte) 0)
return new WithCustomKeyEquivalence(getHashConfig(), getDefaultExpectedSize()
, isNullKeyAllowed(), keyEquivalence);
if (defaultValue == this.defaultValue)
return this;
return new WithCustomKeyEquivalenceAndDefaultValue(
getHashConfig(), getDefaultExpectedSize()
, isNullKeyAllowed(), keyEquivalence, defaultValue);
}
@Override
HashObjByteMapFactory thisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
) {
return new WithCustomKeyEquivalenceAndDefaultValue(hashConf, defaultExpectedSize, isNullKeyAllowed
,
keyEquivalence, defaultValue);
}
@Override
HashObjByteMapFactory qHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
) {
return new QHashSeparateKVObjByteMapFactoryImpl
.WithCustomKeyEquivalenceAndDefaultValue(hashConf, defaultExpectedSize, isNullKeyAllowed
,
keyEquivalence, defaultValue);
}
@Override
HashObjByteMapFactory lHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
) {
return new LHashSeparateKVObjByteMapFactoryImpl
.WithCustomKeyEquivalenceAndDefaultValue(hashConf, defaultExpectedSize, isNullKeyAllowed
,
keyEquivalence, defaultValue);
}
}
}