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

com.gs.collections.impl.multimap.list.ImmutableListMultimapImpl Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 7.0.3
Show newest version
/*
 * Copyright 2011 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.Serializable;

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.list.ImmutableListMultimap;
import com.gs.collections.api.multimap.list.MutableListMultimap;
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;

/**
 * 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.of();
    }

    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>
    {
        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 values)
    {
        return (ImmutableListMultimap) super.newWithAll(key, values);
    }

    @Override
    public ImmutableListMultimap newWithoutAll(Object key)
    {
        return (ImmutableListMultimap) super.newWithoutAll(key);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy