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

com.koloboke.collect.impl.hash.LHashObjSetFactoryImpl 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.Equivalence;
import com.koloboke.collect.hash.*;
import com.koloboke.collect.set.hash.HashObjSetFactory;

import javax.annotation.Nonnull;


public final class LHashObjSetFactoryImpl extends LHashObjSetFactoryGO {

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

    

    

    

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

    @SuppressWarnings("unchecked")
    @Override
    @Nonnull
    public HashObjSetFactory withEquivalence(@Nonnull Equivalence equivalence) {
        if (equivalence.equals(Equivalence.defaultEquality())) {
            return (HashObjSetFactory) this;
        }
        return new WithCustomEquivalence(getHashConfig(), getDefaultExpectedSize(), isNullKeyAllowed(), (Equivalence) equivalence);
    }

    @Override
    @Nonnull
    public HashObjSetFactory withNullKeyAllowed(boolean nullAllowed) {
        if (nullAllowed == isNullKeyAllowed())
            return this;
        return thisWith(getHashConfig(), getDefaultExpectedSize(), nullAllowed);
    }

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

    @Override
    HashObjSetFactory qHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed) {
        return new QHashObjSetFactoryImpl(hashConf, defaultExpectedSize, isNullKeyAllowed);
    }
    @Override
    HashObjSetFactory lHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed) {
        return new LHashObjSetFactoryImpl(hashConf, defaultExpectedSize, isNullKeyAllowed);
    }

    static final class WithCustomEquivalence extends LHashObjSetFactoryGO {
        final Equivalence equivalence;

        public WithCustomEquivalence(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed, Equivalence equivalence) {
            super(hashConf, defaultExpectedSize, isNullKeyAllowed);
            this.equivalence = equivalence;
        }

        @Override
        @Nonnull
        public Equivalence getEquivalence() {
            return equivalence;
        }

        @Override
         MutableLHashObjSetGO uninitializedMutableSet() {
            MutableLHashObjSet.WithCustomEquivalence set =
                    new MutableLHashObjSet.WithCustomEquivalence();
            set.equivalence = equivalence;
            return set;
        }
        @Override
         UpdatableLHashObjSetGO uninitializedUpdatableSet() {
            UpdatableLHashObjSet.WithCustomEquivalence set =
                    new UpdatableLHashObjSet.WithCustomEquivalence();
            set.equivalence = equivalence;
            return set;
        }
        @Override
         ImmutableLHashObjSetGO uninitializedImmutableSet() {
            ImmutableLHashObjSet.WithCustomEquivalence set =
                    new ImmutableLHashObjSet.WithCustomEquivalence();
            set.equivalence = equivalence;
            return set;
        }

        @SuppressWarnings("unchecked")
        @Override
        @Nonnull
        public HashObjSetFactory withEquivalence(@Nonnull Equivalence equivalence) {
            if (equivalence.equals(Equivalence.defaultEquality()))
                return new LHashObjSetFactoryImpl(getHashConfig(), getDefaultExpectedSize(), isNullKeyAllowed());
            if (this.equivalence.equals(equivalence)) {
                return (HashObjSetFactory) this;
            }
            return new WithCustomEquivalence(getHashConfig(), getDefaultExpectedSize(), isNullKeyAllowed(), (Equivalence) equivalence);
        }

        @Override
        @Nonnull
        public HashObjSetFactory withNullKeyAllowed(boolean nullAllowed) {
            if (nullAllowed == isNullKeyAllowed())
                return this;
            return thisWith(getHashConfig(), getDefaultExpectedSize(), nullAllowed);
        }

        @Override
        HashObjSetFactory thisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed) {
            return new WithCustomEquivalence(hashConf, defaultExpectedSize, isNullKeyAllowed, equivalence);
        }

        @Override
        HashObjSetFactory qHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed) {
            return new QHashObjSetFactoryImpl.WithCustomEquivalence(
                hashConf, defaultExpectedSize, isNullKeyAllowed, equivalence);
        }
        @Override
        HashObjSetFactory lHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullKeyAllowed) {
            return new LHashObjSetFactoryImpl.WithCustomEquivalence(
                hashConf, defaultExpectedSize, isNullKeyAllowed, equivalence);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy