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

edu.stanford.protege.webprotege.index.impl.IndexedSetMultimaps Maven / Gradle / Ivy

The newest version!
package edu.stanford.protege.webprotege.index.impl;

import com.google.common.collect.Multimap;
import com.google.common.collect.Multimaps;

import java.util.Collection;
import java.util.HashMap;

/**
 * Matthew Horridge
 * Stanford Center for Biomedical Informatics Research
 * 2019-09-18
 */
public class IndexedSetMultimaps {

    public static  Multimap, V> create() {
        var backingMap = new HashMap, Collection>();
        return Multimaps.newSetMultimap(backingMap, IndexedSet::new);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy