Example usage for org.apache.commons.collections15 MultiMap interface-usage

List of usage examples for org.apache.commons.collections15 MultiMap interface-usage

Introduction

In this page you can find the example usage for org.apache.commons.collections15 MultiMap interface-usage.

Usage

From source file de.uniba.wiai.kinf.pw.projects.lillytab.abox.ILinkMap.java

/**
 *
 * @param <I> The type for individuals/nominals
 * @param <L> The type for literals
 * @param <K> The type for DL classes
 * @param <R> The type for properties (roles)

From source file de.dhke.projects.cutil.collections.map.EmptyMultiMap.java

/**
 *
 * @author Peter Wullinger <java@dhke.de>
 * @param <K> key type
 * @param <V> value type
 */

From source file de.uniba.wiai.kinf.pw.projects.lillytab.abox.IDependencyMap.java

/**
 *
 * @param <I> The type for individuals/nominals
 * @param <L> The type for literals
 * @param <K> The type for DL classes
 * @param <R> The type for properties (roles)

From source file de.dhke.projects.cutil.collections.cow.CopyOnWriteMultiMap.java

/**
 *
 * @author Peter Wullinger <java@dhke.de>
 */
public class CopyOnWriteMultiMap<K, V> implements MultiMap<K, V>, IDecorator<MultiMap<K, V>> {

From source file de.dhke.projects.cutil.collections.immutable.ImmutableMultiMap.java

/**
 *
 * @author Peter Wullinger <java@dhke.de>
 */
public class ImmutableMultiMap<K, V> implements MultiMap<K, V>, IDecorator<MultiMap<K, V>> {
    private final MultiMap<K, V> _baseMap;

From source file de.dhke.projects.cutil.collections.aspect.AspectMultiMap.java

/**
 *
 * @author Peter Wullinger <java@dhke.de>
 */
public class AspectMultiMap<K, V, M extends MultiMap<K, V>>

From source file org.openanzo.rdf.utils.MultiTreeMap.java

/**
 * <code>MultiHashMap</code> is the default implementation of the {@link org.apache.commons.collections15.MultiMap MultiMap} interface.
 * <p/>
 * A <code>MultiMap</code> is like a Map, but with slightly different semantics. Putting a value into the map will add the value to a Collection at that key.
 * Getting a value will return a Collection, holding all the values put to that key.
 * <p/>