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

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

    

    

    
    
    

    
    
    

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

    

    

    

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

    @Override
    HashObjLongMapFactory thisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed
            ) {
        return new LHashSeparateKVObjLongMapFactoryImpl(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 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 LHashSeparateKVObjLongMapFactoryGO {

        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
         MutableLHashSeparateKVObjLongMapGO
        uninitializedMutableMap() {
            MutableLHashSeparateKVObjLongMap.WithCustomKeyEquivalence map =
                    new MutableLHashSeparateKVObjLongMap.WithCustomKeyEquivalence();
            map.keyEquivalence = keyEquivalence;
            return map;
        }
        @Override
         UpdatableLHashSeparateKVObjLongMapGO
        uninitializedUpdatableMap() {
            UpdatableLHashSeparateKVObjLongMap.WithCustomKeyEquivalence map =
                    new UpdatableLHashSeparateKVObjLongMap.WithCustomKeyEquivalence();
            map.keyEquivalence = keyEquivalence;
            return map;
        }
        @Override
         ImmutableLHashSeparateKVObjLongMapGO
        uninitializedImmutableMap() {
            ImmutableLHashSeparateKVObjLongMap.WithCustomKeyEquivalence map =
                    new ImmutableLHashSeparateKVObjLongMap.WithCustomKeyEquivalence();
            map.keyEquivalence = keyEquivalence;
            return map;
        }

        @SuppressWarnings("unchecked")
        @Override
        @Nonnull
        public HashObjLongMapFactory withKeyEquivalence(
                @Nonnull Equivalence keyEquivalence) {
            if (keyEquivalence.equals(Equivalence.defaultEquality()))
                return new LHashSeparateKVObjLongMapFactoryImpl(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 LHashSeparateKVObjLongMapFactoryGO {
        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
        
     MutableLHashSeparateKVObjLongMapGO uninitializedMutableMap() {
            MutableLHashSeparateKVObjLongMap.WithCustomDefaultValue map =
                    new MutableLHashSeparateKVObjLongMap.WithCustomDefaultValue();
            map.defaultValue = defaultValue;
            return map;
        }
        @Override
        
     UpdatableLHashSeparateKVObjLongMapGO uninitializedUpdatableMap() {
            UpdatableLHashSeparateKVObjLongMap.WithCustomDefaultValue map =
                    new UpdatableLHashSeparateKVObjLongMap.WithCustomDefaultValue();
            map.defaultValue = defaultValue;
            return map;
        }
        @Override
        
     ImmutableLHashSeparateKVObjLongMapGO uninitializedImmutableMap() {
            ImmutableLHashSeparateKVObjLongMap.WithCustomDefaultValue map =
                    new ImmutableLHashSeparateKVObjLongMap.WithCustomDefaultValue();
            map.defaultValue = defaultValue;
            return map;
        }

        @SuppressWarnings("unchecked")
        @Override
        @Nonnull
        public HashObjLongMapFactory withKeyEquivalence(
                @Nonnull Equivalence 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 LHashSeparateKVObjLongMapFactoryImpl(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 LHashSeparateKVObjLongMapFactoryGO {
        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
         MutableLHashSeparateKVObjLongMapGO uninitializedMutableMap() {
            MutableLHashSeparateKVObjLongMap.WithCustomKeyEquivalenceAndDefaultValue map =
                    new MutableLHashSeparateKVObjLongMap
                            .WithCustomKeyEquivalenceAndDefaultValue();
            map.keyEquivalence = keyEquivalence;
            map.defaultValue = defaultValue;
            return map;
        }
        @Override
         UpdatableLHashSeparateKVObjLongMapGO uninitializedUpdatableMap() {
            UpdatableLHashSeparateKVObjLongMap.WithCustomKeyEquivalenceAndDefaultValue map =
                    new UpdatableLHashSeparateKVObjLongMap
                            .WithCustomKeyEquivalenceAndDefaultValue();
            map.keyEquivalence = keyEquivalence;
            map.defaultValue = defaultValue;
            return map;
        }
        @Override
         ImmutableLHashSeparateKVObjLongMapGO uninitializedImmutableMap() {
            ImmutableLHashSeparateKVObjLongMap.WithCustomKeyEquivalenceAndDefaultValue map =
                    new ImmutableLHashSeparateKVObjLongMap
                            .WithCustomKeyEquivalenceAndDefaultValue();
            map.keyEquivalence = keyEquivalence;
            map.defaultValue = defaultValue;
            return map;
        }

        @SuppressWarnings("unchecked")
        @Override
        @Nonnull
        public HashObjLongMapFactory withKeyEquivalence(
                @Nonnull Equivalence 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);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy