Example usage for com.google.common.collect ForwardingSetMultimap subclass-usage

List of usage examples for com.google.common.collect ForwardingSetMultimap subclass-usage

Introduction

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

Usage

From source file com.google.devtools.build.lib.util.OrderedSetMultimap.java

/**
 * A {@code Multimap} that cannot hold duplicate key-value pairs, returns {@code keySet},
 * {@code keys}, and {@code asMap} collections that iterate through the keys in the order they were
 * first added, and maintains the insertion ordering of values for a given key. See the
 * {@link Multimap} documentation for information common to all multimaps.
 */

From source file org.pentaho.di.trans.dataservice.optimization.paramgen.SourceLineageMap.java

public class SourceLineageMap extends ForwardingSetMultimap<String, List<StepFieldOperations>> {
    private SetMultimap<String, List<StepFieldOperations>> storage;

    protected SourceLineageMap(SetMultimap<String, List<StepFieldOperations>> storage) {
        this.storage = storage;
    }