org.reflections8.util.SetMultimap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of reflections8 Show documentation
Show all versions of reflections8 Show documentation
Reflections8 - a Java runtime metadata analysis without guava on Java 8
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