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

com.gs.collections.impl.multimap.bag.TreeBagMultimap 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 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.bag;

import java.io.Externalizable;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import java.util.Comparator;

import com.gs.collections.api.bag.sorted.MutableSortedBag;
import com.gs.collections.api.map.MutableMap;
import com.gs.collections.api.multimap.Multimap;
import com.gs.collections.api.multimap.sortedbag.ImmutableSortedBagMultimap;
import com.gs.collections.api.multimap.sortedbag.MutableSortedBagMultimap;
import com.gs.collections.api.multimap.sortedbag.SortedBagMultimap;
import com.gs.collections.api.tuple.Pair;
import com.gs.collections.impl.bag.sorted.mutable.TreeBag;
import com.gs.collections.impl.map.mutable.UnifiedMap;
import com.gs.collections.impl.multimap.AbstractMutableMultimap;

/**
 * @deprecated in 5.0. Use {@link com.gs.collections.impl.multimap.bag.sorted.TreeBagMultimap} instead.
 */
@Deprecated
public final class TreeBagMultimap
        extends AbstractMutableMultimap>
        implements MutableSortedBagMultimap, Externalizable
{
    private static final long serialVersionUID = 1L;
    private Comparator comparator;

    public TreeBagMultimap()
    {
        this.comparator = null;
    }

    public TreeBagMultimap(Comparator comparator)
    {
        this.comparator = comparator;
    }

    public TreeBagMultimap(Multimap multimap)
    {
        super(Math.max(multimap.keysView().size() * 2, 16));
        this.comparator = multimap instanceof SortedBagMultimap ? ((SortedBagMultimap) multimap).comparator() : null;
        this.putAll(multimap);
    }

    public TreeBagMultimap(Pair... pairs)
    {
        super(pairs);
        this.comparator = null;
    }

    public static  TreeBagMultimap newMultimap()
    {
        return new TreeBagMultimap();
    }

    public static  TreeBagMultimap newMultimap(Multimap multimap)
    {
        return new TreeBagMultimap(multimap);
    }

    public static  TreeBagMultimap newMultimap(Comparator comparator)
    {
        return new TreeBagMultimap(comparator);
    }

    public static  TreeBagMultimap newMultimap(Pair... pairs)
    {
        return new TreeBagMultimap(pairs);
    }

    @Override
    protected MutableMap> createMap()
    {
        return UnifiedMap.newMap();
    }

    @Override
    protected MutableMap> createMapWithKeyCount(int keyCount)
    {
        return UnifiedMap.newMap(keyCount);
    }

    @Override
    protected MutableSortedBag createCollection()
    {
        return TreeBag.newBag(this.comparator);
    }

    public TreeBagMultimap newEmpty()
    {
        return new TreeBagMultimap();
    }

    public Comparator comparator()
    {
        return this.comparator;
    }

    public MutableSortedBagMultimap toMutable()
    {
        return new TreeBagMultimap(this);
    }

    public ImmutableSortedBagMultimap toImmutable()
    {
        throw new UnsupportedOperationException(this.getClass().getSimpleName() + ".toImmutable() not implemented yet");
    }

    @Override
    public void writeExternal(ObjectOutput out) throws IOException
    {
        out.writeObject(this.comparator());
        super.writeExternal(out);
    }

    @Override
    public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
    {
        this.comparator = (Comparator) in.readObject();
        super.readExternal(in);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy