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

edu.umd.cs.findbugs.util.MergeMap Maven / Gradle / Ivy

There is a newer version: 4.8.6
Show newest version
/*
 * FindBugs - Find Bugs in Java programs
 * Copyright (C) 2003-2008 University of Maryland
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

package edu.umd.cs.findbugs.util;

import java.util.HashMap;
import java.util.Map;
import java.util.Set;

/**
 * @author pugh
 */
public abstract class MergeMap {

    public static class MinMap> extends MergeMap {
        @Override
        protected V mergeValues(V oldValue, V newValue) {

            if (oldValue.compareTo(newValue) > 0) {
                return newValue;
            }
            return oldValue;
        }
    }

    public static class MaxMap> extends MergeMap {

        @Override
        protected V mergeValues(V oldValue, V newValue) {

            if (oldValue.compareTo(newValue) < 0) {
                return newValue;
            }
            return oldValue;
        }
    }

    final Map map;

    protected abstract V mergeValues(V oldValue, V newValue);

    public MergeMap() {
        map = new HashMap<>();
    }

    public MergeMap(Map map) {
        this.map = map;
    }

    public V put(K k, V v) {
        V currentValue = map.get(k);
        if (currentValue == null) {
            map.put(k, v);
            return v;
        }
        V result = mergeValues(currentValue, v);
        if (currentValue != result) {
            map.put(k, v);
        }

        return result;
    }

    public V get(K k) {
        return map.get(k);
    }

    public boolean containsKey(K k) {
        return map.containsKey(k);
    }

    public Set> entrySet() {
        return map.entrySet();
    }

    public static void main(String args[]) {

        MergeMap m = new MaxMap<>();

        m.put("a", 1);
        m.put("a", 2);
        m.put("b", 2);
        m.put("b", 1);
        System.out.println(m.entrySet());

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy