com.gs.collections.impl.multimap.list.ImmutableListMultimapImpl 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 2015 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 java.io.Serializable;
import com.gs.collections.api.block.function.Function;
import com.gs.collections.api.block.function.Function2;
import com.gs.collections.api.block.predicate.Predicate2;
import com.gs.collections.api.list.ImmutableList;
import com.gs.collections.api.list.MutableList;
import com.gs.collections.api.map.ImmutableMap;
import com.gs.collections.api.map.MutableMap;
import com.gs.collections.api.multimap.bag.ImmutableBagMultimap;
import com.gs.collections.api.multimap.list.ImmutableListMultimap;
import com.gs.collections.api.multimap.list.MutableListMultimap;
import com.gs.collections.api.tuple.Pair;
import com.gs.collections.impl.factory.Lists;
import com.gs.collections.impl.factory.Maps;
import com.gs.collections.impl.multimap.AbstractImmutableMultimap;
import com.gs.collections.impl.multimap.AbstractMutableMultimap;
import com.gs.collections.impl.multimap.ImmutableMultimapSerializationProxy;
import com.gs.collections.impl.multimap.bag.HashBagMultimap;
import com.gs.collections.impl.utility.Iterate;
/**
* The default ImmutableListMultimap implementation.
*
* @since 1.0
*/
public final class ImmutableListMultimapImpl
extends AbstractImmutableMultimap>
implements ImmutableListMultimap, Serializable
{
private static final long serialVersionUID = 1L;
public ImmutableListMultimapImpl(MutableMap> map)
{
super(map);
}
public ImmutableListMultimapImpl(ImmutableMap> map)
{
super(map);
}
@Override
protected ImmutableList createCollection()
{
return Lists.immutable.empty();
}
public ImmutableListMultimap newEmpty()
{
return new ImmutableListMultimapImpl(Maps.immutable.>of());
}
public MutableListMultimap toMutable()
{
return new FastListMultimap(this);
}
@Override
public ImmutableListMultimap toImmutable()
{
return this;
}
private Object writeReplace()
{
return new ImmutableListMultimapSerializationProxy(this.map);
}
public static class ImmutableListMultimapSerializationProxy
extends ImmutableMultimapSerializationProxy> implements Externalizable
{
private static final long serialVersionUID = 1L;
@SuppressWarnings("UnusedDeclaration")
public ImmutableListMultimapSerializationProxy()
{
// For Externalizable use only
}
public ImmutableListMultimapSerializationProxy(ImmutableMap> map)
{
super(map);
}
@Override
protected AbstractMutableMultimap> createEmptyMutableMultimap()
{
return new FastListMultimap();
}
}
@Override
public ImmutableListMultimap newWith(K key, V value)
{
return (ImmutableListMultimap) super.newWith(key, value);
}
@Override
public ImmutableListMultimap newWithout(Object key, Object value)
{
return (ImmutableListMultimap) super.newWithout(key, value);
}
@Override
public ImmutableListMultimap newWithAll(K key, Iterable extends V> values)
{
return (ImmutableListMultimap) super.newWithAll(key, values);
}
@Override
public ImmutableListMultimap newWithoutAll(Object key)
{
return (ImmutableListMultimap) super.newWithoutAll(key);
}
public ImmutableBagMultimap flip()
{
return Iterate.flip(this).toImmutable();
}
public ImmutableListMultimap selectKeysValues(Predicate2 super K, ? super V> predicate)
{
return this.selectKeysValues(predicate, FastListMultimap.newMultimap()).toImmutable();
}
public ImmutableListMultimap rejectKeysValues(Predicate2 super K, ? super V> predicate)
{
return this.rejectKeysValues(predicate, FastListMultimap.newMultimap()).toImmutable();
}
public ImmutableListMultimap selectKeysMultiValues(Predicate2 super K, ? super Iterable> predicate)
{
return this.selectKeysMultiValues(predicate, FastListMultimap.newMultimap()).toImmutable();
}
public ImmutableListMultimap rejectKeysMultiValues(Predicate2 super K, ? super Iterable> predicate)
{
return this.rejectKeysMultiValues(predicate, FastListMultimap.newMultimap()).toImmutable();
}
public ImmutableBagMultimap collectKeysValues(Function2 super K, ? super V, Pair> function)
{
return this.collectKeysValues(function, HashBagMultimap.newMultimap()).toImmutable();
}
public ImmutableListMultimap collectValues(Function super V, ? extends V2> function)
{
return this.collectValues(function, FastListMultimap.newMultimap()).toImmutable();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy