com.gs.collections.impl.multimap.list.MultiReaderFastListMultimap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gs-collections Show documentation
Show all versions of gs-collections Show documentation
GS Collections is a collections framework for Java. It has JDK-compatible List, Set and Map
implementations with a rich API and set of utility classes that work with any JDK compatible Collections,
Arrays, Maps or Strings. The iteration protocol was inspired by the Smalltalk collection framework.
/*
* Copyright 2014 Goldman Sachs.
*
* 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.gs.collections.impl.multimap.list;
import java.io.Externalizable;
import com.gs.collections.api.block.predicate.Predicate2;
import com.gs.collections.api.list.MutableList;
import com.gs.collections.api.map.MutableMap;
import com.gs.collections.api.multimap.Multimap;
import com.gs.collections.api.multimap.bag.MutableBagMultimap;
import com.gs.collections.api.tuple.Pair;
import com.gs.collections.impl.list.mutable.MultiReaderFastList;
import com.gs.collections.impl.map.mutable.ConcurrentHashMap;
import com.gs.collections.impl.utility.Iterate;
public final class MultiReaderFastListMultimap
extends AbstractMutableListMultimap implements Externalizable
{
private static final long serialVersionUID = 1L;
// Default from FastList
private static final int DEFAULT_CAPACITY = 1;
private int initialListCapacity;
public MultiReaderFastListMultimap()
{
this.initialListCapacity = DEFAULT_CAPACITY;
}
public MultiReaderFastListMultimap(int distinctKeys, int valuesPerKey)
{
super(Math.max(distinctKeys * 2, 16));
if (distinctKeys < 0 || valuesPerKey < 0)
{
throw new IllegalArgumentException("Both arguments must be positive.");
}
this.initialListCapacity = valuesPerKey;
}
public MultiReaderFastListMultimap(Multimap extends K, ? extends V> multimap)
{
this(
multimap.keysView().size(),
multimap instanceof MultiReaderFastListMultimap
? ((MultiReaderFastListMultimap, ?>) multimap).initialListCapacity
: DEFAULT_CAPACITY);
this.putAll(multimap);
}
public MultiReaderFastListMultimap(Pair... pairs)
{
super(pairs);
}
public MultiReaderFastListMultimap(Iterable> inputIterable)
{
super(inputIterable);
}
public static MultiReaderFastListMultimap newMultimap()
{
return new MultiReaderFastListMultimap();
}
public static MultiReaderFastListMultimap newMultimap(Multimap extends K, ? extends V> multimap)
{
return new MultiReaderFastListMultimap(multimap);
}
public static MultiReaderFastListMultimap newMultimap(Pair... pairs)
{
return new MultiReaderFastListMultimap(pairs);
}
public static MultiReaderFastListMultimap newMultimap(Iterable> inputIterable)
{
return new MultiReaderFastListMultimap(inputIterable);
}
@Override
protected MutableMap> createMap()
{
return ConcurrentHashMap.newMap();
}
@Override
protected MutableMap> createMapWithKeyCount(int keyCount)
{
return ConcurrentHashMap.newMap(keyCount);
}
@Override
protected MutableList createCollection()
{
return MultiReaderFastList.newList(this.initialListCapacity);
}
public MultiReaderFastListMultimap newEmpty()
{
return new MultiReaderFastListMultimap();
}
public MutableBagMultimap flip()
{
return Iterate.flip(this);
}
public FastListMultimap selectKeysValues(Predicate2 super K, ? super V> predicate)
{
return this.selectKeysValues(predicate, FastListMultimap.newMultimap());
}
public FastListMultimap rejectKeysValues(Predicate2 super K, ? super V> predicate)
{
return this.rejectKeysValues(predicate, FastListMultimap.newMultimap());
}
public FastListMultimap selectKeysMultiValues(Predicate2 super K, ? super Iterable> predicate)
{
return this.selectKeysMultiValues(predicate, FastListMultimap.newMultimap());
}
public FastListMultimap rejectKeysMultiValues(Predicate2 super K, ? super Iterable> predicate)
{
return this.rejectKeysMultiValues(predicate, FastListMultimap.newMultimap());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy