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

com.koloboke.collect.impl.hash.QHashSeparateKVObjFloatMapFactoryImpl 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 QHashSeparateKVObjFloatMapFactoryImpl
        extends QHashSeparateKVObjFloatMapFactoryGO {

    

    

    
    
    

    
    
    

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

    

    

    

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

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

    @Override
    HashObjFloatMapFactory qHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
            ) {
        return new QHashSeparateKVObjFloatMapFactoryImpl(hashConf, defaultExpectedSize, isNullKeyAllowed
            );
    }
    @Override
    HashObjFloatMapFactory lHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
            ) {
        return new LHashSeparateKVObjFloatMapFactoryImpl(hashConf, defaultExpectedSize, isNullKeyAllowed
            );
    }

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

    @Override
    @Nonnull
    public HashObjFloatMapFactory withDefaultValue(float defaultValue) {
        if (defaultValue == 0.0f)
            return this;
        return new WithCustomDefaultValue(getHashConfig(), getDefaultExpectedSize()
        , isNullKeyAllowed(), defaultValue);
    }

    static class WithCustomKeyEquivalence
            extends QHashSeparateKVObjFloatMapFactoryGO {

        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
         MutableQHashSeparateKVObjFloatMapGO
        uninitializedMutableMap() {
            MutableQHashSeparateKVObjFloatMap.WithCustomKeyEquivalence map =
                    new MutableQHashSeparateKVObjFloatMap.WithCustomKeyEquivalence();
            map.keyEquivalence = keyEquivalence;
            return map;
        }
        @Override
         UpdatableQHashSeparateKVObjFloatMapGO
        uninitializedUpdatableMap() {
            UpdatableQHashSeparateKVObjFloatMap.WithCustomKeyEquivalence map =
                    new UpdatableQHashSeparateKVObjFloatMap.WithCustomKeyEquivalence();
            map.keyEquivalence = keyEquivalence;
            return map;
        }
        @Override
         ImmutableQHashSeparateKVObjFloatMapGO
        uninitializedImmutableMap() {
            ImmutableQHashSeparateKVObjFloatMap.WithCustomKeyEquivalence map =
                    new ImmutableQHashSeparateKVObjFloatMap.WithCustomKeyEquivalence();
            map.keyEquivalence = keyEquivalence;
            return map;
        }

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

        @Override
        @Nonnull
        public HashObjFloatMapFactory withDefaultValue(float defaultValue) {
            if (defaultValue == 0.0f)
                return this;
            return new WithCustomKeyEquivalenceAndDefaultValue(
                    getHashConfig(), getDefaultExpectedSize()
        , isNullKeyAllowed(), keyEquivalence, defaultValue);
        }

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

        @Override
        HashObjFloatMapFactory qHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
            ) {
            return new QHashSeparateKVObjFloatMapFactoryImpl.WithCustomKeyEquivalence(
                    hashConf, defaultExpectedSize, isNullKeyAllowed
            , keyEquivalence);
        }
        @Override
        HashObjFloatMapFactory lHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
            ) {
            return new LHashSeparateKVObjFloatMapFactoryImpl.WithCustomKeyEquivalence(
                    hashConf, defaultExpectedSize, isNullKeyAllowed
            , keyEquivalence);
        }
    }

    static final class WithCustomDefaultValue
            extends QHashSeparateKVObjFloatMapFactoryGO {
        private final float defaultValue;

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

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

        @Override
        
     MutableQHashSeparateKVObjFloatMapGO uninitializedMutableMap() {
            MutableQHashSeparateKVObjFloatMap.WithCustomDefaultValue map =
                    new MutableQHashSeparateKVObjFloatMap.WithCustomDefaultValue();
            map.defaultValue = defaultValue;
            return map;
        }
        @Override
        
     UpdatableQHashSeparateKVObjFloatMapGO uninitializedUpdatableMap() {
            UpdatableQHashSeparateKVObjFloatMap.WithCustomDefaultValue map =
                    new UpdatableQHashSeparateKVObjFloatMap.WithCustomDefaultValue();
            map.defaultValue = defaultValue;
            return map;
        }
        @Override
        
     ImmutableQHashSeparateKVObjFloatMapGO uninitializedImmutableMap() {
            ImmutableQHashSeparateKVObjFloatMap.WithCustomDefaultValue map =
                    new ImmutableQHashSeparateKVObjFloatMap.WithCustomDefaultValue();
            map.defaultValue = defaultValue;
            return map;
        }

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

        @Override
        @Nonnull
        public HashObjFloatMapFactory withDefaultValue(float defaultValue) {
            if (defaultValue == 0.0f)
                return new QHashSeparateKVObjFloatMapFactoryImpl(getHashConfig(), getDefaultExpectedSize()
        , isNullKeyAllowed());
            if (defaultValue == this.defaultValue)
                return this;
            return new WithCustomDefaultValue(getHashConfig(), getDefaultExpectedSize()
        , isNullKeyAllowed(), defaultValue);
        }

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

        @Override
        HashObjFloatMapFactory qHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
            ) {
            return new QHashSeparateKVObjFloatMapFactoryImpl.WithCustomDefaultValue(
                    hashConf, defaultExpectedSize, isNullKeyAllowed
            , defaultValue);
        }
        @Override
        HashObjFloatMapFactory lHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
            ) {
            return new LHashSeparateKVObjFloatMapFactoryImpl.WithCustomDefaultValue(
                    hashConf, defaultExpectedSize, isNullKeyAllowed
            , defaultValue);
        }
    }

    static final class WithCustomKeyEquivalenceAndDefaultValue
            extends QHashSeparateKVObjFloatMapFactoryGO {
        private final Equivalence keyEquivalence;
        private final float defaultValue;

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

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

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

        @Override
         MutableQHashSeparateKVObjFloatMapGO uninitializedMutableMap() {
            MutableQHashSeparateKVObjFloatMap.WithCustomKeyEquivalenceAndDefaultValue map =
                    new MutableQHashSeparateKVObjFloatMap
                            .WithCustomKeyEquivalenceAndDefaultValue();
            map.keyEquivalence = keyEquivalence;
            map.defaultValue = defaultValue;
            return map;
        }
        @Override
         UpdatableQHashSeparateKVObjFloatMapGO uninitializedUpdatableMap() {
            UpdatableQHashSeparateKVObjFloatMap.WithCustomKeyEquivalenceAndDefaultValue map =
                    new UpdatableQHashSeparateKVObjFloatMap
                            .WithCustomKeyEquivalenceAndDefaultValue();
            map.keyEquivalence = keyEquivalence;
            map.defaultValue = defaultValue;
            return map;
        }
        @Override
         ImmutableQHashSeparateKVObjFloatMapGO uninitializedImmutableMap() {
            ImmutableQHashSeparateKVObjFloatMap.WithCustomKeyEquivalenceAndDefaultValue map =
                    new ImmutableQHashSeparateKVObjFloatMap
                            .WithCustomKeyEquivalenceAndDefaultValue();
            map.keyEquivalence = keyEquivalence;
            map.defaultValue = defaultValue;
            return map;
        }

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

        @Override
        @Nonnull
        public HashObjFloatMapFactory withDefaultValue(float defaultValue) {
            if (defaultValue == 0.0f)
                return new WithCustomKeyEquivalence(getHashConfig(), getDefaultExpectedSize()
        , isNullKeyAllowed(), keyEquivalence);
            if (defaultValue == this.defaultValue)
                return this;
            return new WithCustomKeyEquivalenceAndDefaultValue(
                    getHashConfig(), getDefaultExpectedSize()
        , isNullKeyAllowed(), keyEquivalence, defaultValue);
        }

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

        @Override
        HashObjFloatMapFactory qHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
            ) {
            return new QHashSeparateKVObjFloatMapFactoryImpl
                        .WithCustomKeyEquivalenceAndDefaultValue(hashConf, defaultExpectedSize, isNullKeyAllowed
            ,
                    keyEquivalence, defaultValue);
        }
        @Override
        HashObjFloatMapFactory lHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
            ) {
            return new LHashSeparateKVObjFloatMapFactoryImpl
                        .WithCustomKeyEquivalenceAndDefaultValue(hashConf, defaultExpectedSize, isNullKeyAllowed
            ,
                    keyEquivalence, defaultValue);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy