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

org.boon.collections.MultiMap Maven / Gradle / Ivy

Go to download

Simple opinionated Java for the novice to expert level Java Programmer. Low Ceremony. High Productivity. A real boon to Java to developers!

There is a newer version: 0.34
Show newest version
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> baseMap();


    public V getSingleObject(K name);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy