Example usage for com.google.common.collect Multimap interface-usage

List of usage examples for com.google.common.collect Multimap interface-usage

Introduction

In this page you can find the example usage for com.google.common.collect Multimap interface-usage.

Usage

From source file com.jcwhatever.nucleus.collections.wrap.MultimapWrapper.java

/**
 * An abstract implementation of a synchronized {@link Multimap} wrapper. The wrapper is
 * optionally synchronized via a sync object or {@link ReadWriteLock} passed into the
 * constructor using a {@link SyncStrategy}.
 *
 * <p>If the map is synchronized, the sync object must be externally locked while

From source file com.jcwhatever.nucleus.collections.timed.TimedMultimap.java

/**
 * An encapsulated {@link Multimap} where each key has an individual lifespan that
 * when ended, causes the item to be removed.
 *
 * <p>The lifespan can be reset by re-adding a key.</p>
 *