
org.boon.collections.MultiMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of boon Show documentation
Show all versions of boon Show documentation
Simple opinionated Java for the novice to expert level Java Programmer.
Low Ceremony. High Productivity. A real boon to Java to developers!
package org.boon.collections;
import java.util.Collection;
import java.util.Iterator;
import java.util.Map;
/**
* Created by Richard on 9/26/14.
*/
public interface MultiMap extends Iterable>>, Map{
Iterator>> iterator();
void add(K key, V v);
V getFirst(K key);
Iterable getAll(K key);
boolean removeValueFrom(K key, V v);
boolean removeMulti(K key);
Iterable keySetMulti();
Iterable valueMulti();
void putAll(MultiMap params);
Map extends K,? extends Collection> baseMap();
public V getSingleObject(K name);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy