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

com.conveyal.object_differ.MultimapWrapper Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package com.conveyal.object_differ;

import com.google.common.collect.Multimap;

/**
 * Enable comparison of Guava Multimaps, treating them as maps from keys to Collections of values.
 * Created by abyrd on 2018-11-02
 */
public class MultimapWrapper extends MapComparisonWrapper {

    Multimap multimap;

    public MultimapWrapper(Multimap multimap) {
        this.multimap = multimap;
    }

    @Override
    public Iterable allKeys() {
        return multimap.keySet();
    }

    @Override
    public boolean containsKey(Object key) {
        return multimap.containsKey(key);
    }

    @Override
    public Object get(Object key) {
        return multimap.get(key);
    }

    @Override
    public int size() {
        return multimap.size();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy