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

net.openhft.koloboke.collect.map.hash.HashIntByteMapFactory 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 (API)

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 net.openhft.koloboke.collect.map.hash;

import net.openhft.koloboke.collect.*;
import net.openhft.koloboke.collect.hash.*;
import java.util.function.Consumer;
import net.openhft.koloboke.collect.map.*;

import javax.annotation.Nonnull;

import java.util.Map;



/**
 * An immutable factory of {@code HashIntByteMap}s.
 *
 * @see HashIntByteMap
 * @see HashIntByteMaps#getDefaultFactory()
 */
public interface HashIntByteMapFactory
        extends IntByteMapFactory
        , IntHashFactory
        {


    

    

    

    

    

    
    

    
    


    @Override
    @Nonnull
     HashIntByteMap newMutableMap();

    @Override
    @Nonnull
     HashIntByteMap newMutableMap(int expectedSize);

    


    @Override
    @Nonnull
     HashIntByteMap newMutableMap(@Nonnull Map map1,
            @Nonnull Map map2, int expectedSize);

    @Override
    @Nonnull
     HashIntByteMap newMutableMap(@Nonnull Map map1,
            @Nonnull Map map2,
            @Nonnull Map map3, int expectedSize);

    @Override
    @Nonnull
     HashIntByteMap newMutableMap(@Nonnull Map map1,
            @Nonnull Map map2,
            @Nonnull Map map3,
            @Nonnull Map map4, int expectedSize);

    @Override
    @Nonnull
     HashIntByteMap newMutableMap(@Nonnull Map map1,
            @Nonnull Map map2,
            @Nonnull Map map3,
            @Nonnull Map map4,
            @Nonnull Map map5, int expectedSize);



    @Override
    @Nonnull
     HashIntByteMap newMutableMap(@Nonnull
            Consumer entriesSupplier
            , int expectedSize);

    @Override
    @Nonnull
     HashIntByteMap newMutableMap(
            @Nonnull int[] keys, @Nonnull byte[] values, int expectedSize);

    @Override
    @Nonnull
     HashIntByteMap newMutableMap(
            @Nonnull Integer[] keys, @Nonnull Byte[] values, int expectedSize);

    @Override
    @Nonnull
     HashIntByteMap newMutableMap(@Nonnull Iterable keys,
            @Nonnull Iterable values, int expectedSize);

    

    @Override
    @Nonnull
     HashIntByteMap newMutableMap(
            @Nonnull Map map);

    @Override
    @Nonnull
     HashIntByteMap newMutableMap(@Nonnull Map map1,
            @Nonnull Map map2);

    @Override
    @Nonnull
     HashIntByteMap newMutableMap(@Nonnull Map map1,
            @Nonnull Map map2,
            @Nonnull Map map3);

    @Override
    @Nonnull
     HashIntByteMap newMutableMap(@Nonnull Map map1,
            @Nonnull Map map2,
            @Nonnull Map map3,
            @Nonnull Map map4);

    @Override
    @Nonnull
     HashIntByteMap newMutableMap(@Nonnull Map map1,
            @Nonnull Map map2,
            @Nonnull Map map3,
            @Nonnull Map map4,
            @Nonnull Map map5);



    @Override
    @Nonnull
     HashIntByteMap newMutableMap(@Nonnull
            Consumer entriesSupplier
            );

    @Override
    @Nonnull
     HashIntByteMap newMutableMap(
            @Nonnull int[] keys, @Nonnull byte[] values);

    @Override
    @Nonnull
     HashIntByteMap newMutableMap(
            @Nonnull Integer[] keys, @Nonnull Byte[] values);

    @Override
    @Nonnull
     HashIntByteMap newMutableMap(@Nonnull Iterable keys,
            @Nonnull Iterable values);


    @Override
    @Nonnull
     HashIntByteMap newMutableMapOf(int k1, byte v1);

    @Override
    @Nonnull
     HashIntByteMap newMutableMapOf(int k1, byte v1,
            int k2, byte v2);

    @Override
    @Nonnull
     HashIntByteMap newMutableMapOf(int k1, byte v1,
            int k2, byte v2, int k3, byte v3);

    @Override
    @Nonnull
     HashIntByteMap newMutableMapOf(int k1, byte v1,
            int k2, byte v2, int k3, byte v3,
            int k4, byte v4);

    @Override
    @Nonnull
     HashIntByteMap newMutableMapOf(int k1, byte v1,
            int k2, byte v2, int k3, byte v3,
            int k4, byte v4, int k5, byte v5);
    @Override
    @Nonnull
     HashIntByteMap newUpdatableMap();

    @Override
    @Nonnull
     HashIntByteMap newUpdatableMap(int expectedSize);

    


    @Override
    @Nonnull
     HashIntByteMap newUpdatableMap(@Nonnull Map map1,
            @Nonnull Map map2, int expectedSize);

    @Override
    @Nonnull
     HashIntByteMap newUpdatableMap(@Nonnull Map map1,
            @Nonnull Map map2,
            @Nonnull Map map3, int expectedSize);

    @Override
    @Nonnull
     HashIntByteMap newUpdatableMap(@Nonnull Map map1,
            @Nonnull Map map2,
            @Nonnull Map map3,
            @Nonnull Map map4, int expectedSize);

    @Override
    @Nonnull
     HashIntByteMap newUpdatableMap(@Nonnull Map map1,
            @Nonnull Map map2,
            @Nonnull Map map3,
            @Nonnull Map map4,
            @Nonnull Map map5, int expectedSize);



    @Override
    @Nonnull
     HashIntByteMap newUpdatableMap(@Nonnull
            Consumer entriesSupplier
            , int expectedSize);

    @Override
    @Nonnull
     HashIntByteMap newUpdatableMap(
            @Nonnull int[] keys, @Nonnull byte[] values, int expectedSize);

    @Override
    @Nonnull
     HashIntByteMap newUpdatableMap(
            @Nonnull Integer[] keys, @Nonnull Byte[] values, int expectedSize);

    @Override
    @Nonnull
     HashIntByteMap newUpdatableMap(@Nonnull Iterable keys,
            @Nonnull Iterable values, int expectedSize);

    

    @Override
    @Nonnull
     HashIntByteMap newUpdatableMap(
            @Nonnull Map map);

    @Override
    @Nonnull
     HashIntByteMap newUpdatableMap(@Nonnull Map map1,
            @Nonnull Map map2);

    @Override
    @Nonnull
     HashIntByteMap newUpdatableMap(@Nonnull Map map1,
            @Nonnull Map map2,
            @Nonnull Map map3);

    @Override
    @Nonnull
     HashIntByteMap newUpdatableMap(@Nonnull Map map1,
            @Nonnull Map map2,
            @Nonnull Map map3,
            @Nonnull Map map4);

    @Override
    @Nonnull
     HashIntByteMap newUpdatableMap(@Nonnull Map map1,
            @Nonnull Map map2,
            @Nonnull Map map3,
            @Nonnull Map map4,
            @Nonnull Map map5);



    @Override
    @Nonnull
     HashIntByteMap newUpdatableMap(@Nonnull
            Consumer entriesSupplier
            );

    @Override
    @Nonnull
     HashIntByteMap newUpdatableMap(
            @Nonnull int[] keys, @Nonnull byte[] values);

    @Override
    @Nonnull
     HashIntByteMap newUpdatableMap(
            @Nonnull Integer[] keys, @Nonnull Byte[] values);

    @Override
    @Nonnull
     HashIntByteMap newUpdatableMap(@Nonnull Iterable keys,
            @Nonnull Iterable values);


    @Override
    @Nonnull
     HashIntByteMap newUpdatableMapOf(int k1, byte v1);

    @Override
    @Nonnull
     HashIntByteMap newUpdatableMapOf(int k1, byte v1,
            int k2, byte v2);

    @Override
    @Nonnull
     HashIntByteMap newUpdatableMapOf(int k1, byte v1,
            int k2, byte v2, int k3, byte v3);

    @Override
    @Nonnull
     HashIntByteMap newUpdatableMapOf(int k1, byte v1,
            int k2, byte v2, int k3, byte v3,
            int k4, byte v4);

    @Override
    @Nonnull
     HashIntByteMap newUpdatableMapOf(int k1, byte v1,
            int k2, byte v2, int k3, byte v3,
            int k4, byte v4, int k5, byte v5);

    


    @Override
    @Nonnull
     HashIntByteMap newImmutableMap(@Nonnull Map map1,
            @Nonnull Map map2, int expectedSize);

    @Override
    @Nonnull
     HashIntByteMap newImmutableMap(@Nonnull Map map1,
            @Nonnull Map map2,
            @Nonnull Map map3, int expectedSize);

    @Override
    @Nonnull
     HashIntByteMap newImmutableMap(@Nonnull Map map1,
            @Nonnull Map map2,
            @Nonnull Map map3,
            @Nonnull Map map4, int expectedSize);

    @Override
    @Nonnull
     HashIntByteMap newImmutableMap(@Nonnull Map map1,
            @Nonnull Map map2,
            @Nonnull Map map3,
            @Nonnull Map map4,
            @Nonnull Map map5, int expectedSize);



    @Override
    @Nonnull
     HashIntByteMap newImmutableMap(@Nonnull
            Consumer entriesSupplier
            , int expectedSize);

    @Override
    @Nonnull
     HashIntByteMap newImmutableMap(
            @Nonnull int[] keys, @Nonnull byte[] values, int expectedSize);

    @Override
    @Nonnull
     HashIntByteMap newImmutableMap(
            @Nonnull Integer[] keys, @Nonnull Byte[] values, int expectedSize);

    @Override
    @Nonnull
     HashIntByteMap newImmutableMap(@Nonnull Iterable keys,
            @Nonnull Iterable values, int expectedSize);

    

    @Override
    @Nonnull
     HashIntByteMap newImmutableMap(
            @Nonnull Map map);

    @Override
    @Nonnull
     HashIntByteMap newImmutableMap(@Nonnull Map map1,
            @Nonnull Map map2);

    @Override
    @Nonnull
     HashIntByteMap newImmutableMap(@Nonnull Map map1,
            @Nonnull Map map2,
            @Nonnull Map map3);

    @Override
    @Nonnull
     HashIntByteMap newImmutableMap(@Nonnull Map map1,
            @Nonnull Map map2,
            @Nonnull Map map3,
            @Nonnull Map map4);

    @Override
    @Nonnull
     HashIntByteMap newImmutableMap(@Nonnull Map map1,
            @Nonnull Map map2,
            @Nonnull Map map3,
            @Nonnull Map map4,
            @Nonnull Map map5);



    @Override
    @Nonnull
     HashIntByteMap newImmutableMap(@Nonnull
            Consumer entriesSupplier
            );

    @Override
    @Nonnull
     HashIntByteMap newImmutableMap(
            @Nonnull int[] keys, @Nonnull byte[] values);

    @Override
    @Nonnull
     HashIntByteMap newImmutableMap(
            @Nonnull Integer[] keys, @Nonnull Byte[] values);

    @Override
    @Nonnull
     HashIntByteMap newImmutableMap(@Nonnull Iterable keys,
            @Nonnull Iterable values);


    @Override
    @Nonnull
     HashIntByteMap newImmutableMapOf(int k1, byte v1);

    @Override
    @Nonnull
     HashIntByteMap newImmutableMapOf(int k1, byte v1,
            int k2, byte v2);

    @Override
    @Nonnull
     HashIntByteMap newImmutableMapOf(int k1, byte v1,
            int k2, byte v2, int k3, byte v3);

    @Override
    @Nonnull
     HashIntByteMap newImmutableMapOf(int k1, byte v1,
            int k2, byte v2, int k3, byte v3,
            int k4, byte v4);

    @Override
    @Nonnull
     HashIntByteMap newImmutableMapOf(int k1, byte v1,
            int k2, byte v2, int k3, byte v3,
            int k4, byte v4, int k5, byte v5);
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy