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

org.reflections8.util.SetMultimap Maven / Gradle / Ivy

There is a newer version: 0.11.7
Show newest version
package org.reflections8.util;

import java.util.Collection;
import java.util.Map;
import java.util.Set;

/**
 * Helper class used to avoid guava
 *
 * @author aschoerk
 */
public interface SetMultimap extends Map> {
    boolean putSingle(T key, V value);

    void putAllSingles(SetMultimap m);

    boolean removeSingle(Object key, V value);

    Collection flatValues();

    Set flatValuesAsSet();

    Map> asMap();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy