All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.koloboke.collect.impl.hash.QHashSeparateKVObjShortMapFactoryImpl Maven / Gradle / Ivy

Go to download

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 QHashSeparateKVObjShortMapFactoryImpl
        extends QHashSeparateKVObjShortMapFactoryGO {

    

    

    
    
    

    
    
    

    /** For ServiceLoader */
    public QHashSeparateKVObjShortMapFactoryImpl() {
        this(HashConfig.getDefault(), 10
            , false
            );
    }

    

    

    

    QHashSeparateKVObjShortMapFactoryImpl(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
            ) {
        super(hashConf, defaultExpectedSize, isNullKeyAllowed
            );
    }

    @Override
    HashObjShortMapFactory thisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
            ) {
        return new QHashSeparateKVObjShortMapFactoryImpl(hashConf, defaultExpectedSize, isNullKeyAllowed
            );
    }

    @Override
    HashObjShortMapFactory qHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
            ) {
        return new QHashSeparateKVObjShortMapFactoryImpl(hashConf, defaultExpectedSize, isNullKeyAllowed
            );
    }
    @Override
    HashObjShortMapFactory lHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
            ) {
        return new LHashSeparateKVObjShortMapFactoryImpl(hashConf, defaultExpectedSize, isNullKeyAllowed
            );
    }

    @SuppressWarnings("unchecked")
    @Override
    @Nonnull
    public HashObjShortMapFactory withKeyEquivalence(
            @Nonnull Equivalence keyEquivalence) {
        if (keyEquivalence.equals(Equivalence.defaultEquality())) {
            return (HashObjShortMapFactory) this;
        }
        return new WithCustomKeyEquivalence(getHashConfig(), getDefaultExpectedSize()
        , isNullKeyAllowed(),
                (Equivalence) keyEquivalence);
    }

    @Override
    @Nonnull
    public HashObjShortMapFactory withDefaultValue(short defaultValue) {
        if (defaultValue == (short) 0)
            return this;
        return new WithCustomDefaultValue(getHashConfig(), getDefaultExpectedSize()
        , isNullKeyAllowed(), defaultValue);
    }

    static class WithCustomKeyEquivalence
            extends QHashSeparateKVObjShortMapFactoryGO {

        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
         MutableQHashSeparateKVObjShortMapGO
        uninitializedMutableMap() {
            MutableQHashSeparateKVObjShortMap.WithCustomKeyEquivalence map =
                    new MutableQHashSeparateKVObjShortMap.WithCustomKeyEquivalence();
            map.keyEquivalence = keyEquivalence;
            return map;
        }
        @Override
         UpdatableQHashSeparateKVObjShortMapGO
        uninitializedUpdatableMap() {
            UpdatableQHashSeparateKVObjShortMap.WithCustomKeyEquivalence map =
                    new UpdatableQHashSeparateKVObjShortMap.WithCustomKeyEquivalence();
            map.keyEquivalence = keyEquivalence;
            return map;
        }
        @Override
         ImmutableQHashSeparateKVObjShortMapGO
        uninitializedImmutableMap() {
            ImmutableQHashSeparateKVObjShortMap.WithCustomKeyEquivalence map =
                    new ImmutableQHashSeparateKVObjShortMap.WithCustomKeyEquivalence();
            map.keyEquivalence = keyEquivalence;
            return map;
        }

        @SuppressWarnings("unchecked")
        @Override
        @Nonnull
        public HashObjShortMapFactory withKeyEquivalence(
                @Nonnull Equivalence keyEquivalence) {
            if (keyEquivalence.equals(Equivalence.defaultEquality()))
                return new QHashSeparateKVObjShortMapFactoryImpl(getHashConfig(), getDefaultExpectedSize()
        , isNullKeyAllowed());
            if (keyEquivalence.equals(this.keyEquivalence)) {
                return (HashObjShortMapFactory) this;
            }
            return new WithCustomKeyEquivalence(getHashConfig(), getDefaultExpectedSize()
        , isNullKeyAllowed(),
                    (Equivalence) keyEquivalence);
        }

        @Override
        @Nonnull
        public HashObjShortMapFactory withDefaultValue(short defaultValue) {
            if (defaultValue == (short) 0)
                return this;
            return new WithCustomKeyEquivalenceAndDefaultValue(
                    getHashConfig(), getDefaultExpectedSize()
        , isNullKeyAllowed(), keyEquivalence, defaultValue);
        }

        @Override
        HashObjShortMapFactory thisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
            ) {
            return new WithCustomKeyEquivalence(hashConf, defaultExpectedSize, isNullKeyAllowed
            , keyEquivalence);
        }

        @Override
        HashObjShortMapFactory qHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
            ) {
            return new QHashSeparateKVObjShortMapFactoryImpl.WithCustomKeyEquivalence(
                    hashConf, defaultExpectedSize, isNullKeyAllowed
            , keyEquivalence);
        }
        @Override
        HashObjShortMapFactory lHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
            ) {
            return new LHashSeparateKVObjShortMapFactoryImpl.WithCustomKeyEquivalence(
                    hashConf, defaultExpectedSize, isNullKeyAllowed
            , keyEquivalence);
        }
    }

    static final class WithCustomDefaultValue
            extends QHashSeparateKVObjShortMapFactoryGO {
        private final short defaultValue;

        WithCustomDefaultValue(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
            , short defaultValue) {
            super(hashConf, defaultExpectedSize, isNullKeyAllowed
            );
            this.defaultValue = defaultValue;
        }

        @Override
        public short getDefaultValue() {
            return defaultValue;
        }

        @Override
        
     MutableQHashSeparateKVObjShortMapGO uninitializedMutableMap() {
            MutableQHashSeparateKVObjShortMap.WithCustomDefaultValue map =
                    new MutableQHashSeparateKVObjShortMap.WithCustomDefaultValue();
            map.defaultValue = defaultValue;
            return map;
        }
        @Override
        
     UpdatableQHashSeparateKVObjShortMapGO uninitializedUpdatableMap() {
            UpdatableQHashSeparateKVObjShortMap.WithCustomDefaultValue map =
                    new UpdatableQHashSeparateKVObjShortMap.WithCustomDefaultValue();
            map.defaultValue = defaultValue;
            return map;
        }
        @Override
        
     ImmutableQHashSeparateKVObjShortMapGO uninitializedImmutableMap() {
            ImmutableQHashSeparateKVObjShortMap.WithCustomDefaultValue map =
                    new ImmutableQHashSeparateKVObjShortMap.WithCustomDefaultValue();
            map.defaultValue = defaultValue;
            return map;
        }

        @SuppressWarnings("unchecked")
        @Override
        @Nonnull
        public HashObjShortMapFactory withKeyEquivalence(
                @Nonnull Equivalence keyEquivalence) {
            if (keyEquivalence.equals(Equivalence.defaultEquality())) {
                return (HashObjShortMapFactory) this;
            }
            return new WithCustomKeyEquivalenceAndDefaultValue(getHashConfig(), getDefaultExpectedSize()
        , isNullKeyAllowed(),
                    (Equivalence) keyEquivalence, defaultValue);
        }

        @Override
        @Nonnull
        public HashObjShortMapFactory withDefaultValue(short defaultValue) {
            if (defaultValue == (short) 0)
                return new QHashSeparateKVObjShortMapFactoryImpl(getHashConfig(), getDefaultExpectedSize()
        , isNullKeyAllowed());
            if (defaultValue == this.defaultValue)
                return this;
            return new WithCustomDefaultValue(getHashConfig(), getDefaultExpectedSize()
        , isNullKeyAllowed(), defaultValue);
        }

        @Override
        HashObjShortMapFactory thisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
            ) {
            return new WithCustomDefaultValue(hashConf, defaultExpectedSize, isNullKeyAllowed
            , defaultValue);
        }

        @Override
        HashObjShortMapFactory qHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
            ) {
            return new QHashSeparateKVObjShortMapFactoryImpl.WithCustomDefaultValue(
                    hashConf, defaultExpectedSize, isNullKeyAllowed
            , defaultValue);
        }
        @Override
        HashObjShortMapFactory lHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
            ) {
            return new LHashSeparateKVObjShortMapFactoryImpl.WithCustomDefaultValue(
                    hashConf, defaultExpectedSize, isNullKeyAllowed
            , defaultValue);
        }
    }

    static final class WithCustomKeyEquivalenceAndDefaultValue
            extends QHashSeparateKVObjShortMapFactoryGO {
        private final Equivalence keyEquivalence;
        private final short defaultValue;

        WithCustomKeyEquivalenceAndDefaultValue(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
            ,
                Equivalence keyEquivalence, short defaultValue) {
            super(hashConf, defaultExpectedSize, isNullKeyAllowed
            );
            this.keyEquivalence = keyEquivalence;
            this.defaultValue = defaultValue;
        }

        @Override
        @Nonnull
        public Equivalence getKeyEquivalence() {
            return keyEquivalence;
        }

        @Override
        public short getDefaultValue() {
            return defaultValue;
        }

        @Override
         MutableQHashSeparateKVObjShortMapGO uninitializedMutableMap() {
            MutableQHashSeparateKVObjShortMap.WithCustomKeyEquivalenceAndDefaultValue map =
                    new MutableQHashSeparateKVObjShortMap
                            .WithCustomKeyEquivalenceAndDefaultValue();
            map.keyEquivalence = keyEquivalence;
            map.defaultValue = defaultValue;
            return map;
        }
        @Override
         UpdatableQHashSeparateKVObjShortMapGO uninitializedUpdatableMap() {
            UpdatableQHashSeparateKVObjShortMap.WithCustomKeyEquivalenceAndDefaultValue map =
                    new UpdatableQHashSeparateKVObjShortMap
                            .WithCustomKeyEquivalenceAndDefaultValue();
            map.keyEquivalence = keyEquivalence;
            map.defaultValue = defaultValue;
            return map;
        }
        @Override
         ImmutableQHashSeparateKVObjShortMapGO uninitializedImmutableMap() {
            ImmutableQHashSeparateKVObjShortMap.WithCustomKeyEquivalenceAndDefaultValue map =
                    new ImmutableQHashSeparateKVObjShortMap
                            .WithCustomKeyEquivalenceAndDefaultValue();
            map.keyEquivalence = keyEquivalence;
            map.defaultValue = defaultValue;
            return map;
        }

        @SuppressWarnings("unchecked")
        @Override
        @Nonnull
        public HashObjShortMapFactory withKeyEquivalence(
                @Nonnull Equivalence keyEquivalence) {
            if (keyEquivalence.equals(Equivalence.defaultEquality()))
                return new WithCustomDefaultValue(getHashConfig(), getDefaultExpectedSize()
        , isNullKeyAllowed(), defaultValue);
            if (keyEquivalence.equals(this.keyEquivalence)) {
                return (HashObjShortMapFactory) this;
            }
            return new WithCustomKeyEquivalenceAndDefaultValue(
                    getHashConfig(), getDefaultExpectedSize()
        , isNullKeyAllowed(), (Equivalence) keyEquivalence, defaultValue);
        }

        @Override
        @Nonnull
        public HashObjShortMapFactory withDefaultValue(short defaultValue) {
            if (defaultValue == (short) 0)
                return new WithCustomKeyEquivalence(getHashConfig(), getDefaultExpectedSize()
        , isNullKeyAllowed(), keyEquivalence);
            if (defaultValue == this.defaultValue)
                return this;
            return new WithCustomKeyEquivalenceAndDefaultValue(
                    getHashConfig(), getDefaultExpectedSize()
        , isNullKeyAllowed(), keyEquivalence, defaultValue);
        }

        @Override
        HashObjShortMapFactory thisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
            ) {
            return new WithCustomKeyEquivalenceAndDefaultValue(hashConf, defaultExpectedSize, isNullKeyAllowed
            ,
                    keyEquivalence, defaultValue);
        }

        @Override
        HashObjShortMapFactory qHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
            ) {
            return new QHashSeparateKVObjShortMapFactoryImpl
                        .WithCustomKeyEquivalenceAndDefaultValue(hashConf, defaultExpectedSize, isNullKeyAllowed
            ,
                    keyEquivalence, defaultValue);
        }
        @Override
        HashObjShortMapFactory lHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
            ) {
            return new LHashSeparateKVObjShortMapFactoryImpl
                        .WithCustomKeyEquivalenceAndDefaultValue(hashConf, defaultExpectedSize, isNullKeyAllowed
            ,
                    keyEquivalence, defaultValue);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy