Example usage for com.google.common.collect ImmutableSetMultimap of

List of usage examples for com.google.common.collect ImmutableSetMultimap of

Introduction

In this page you can find the example usage for com.google.common.collect ImmutableSetMultimap of.

Prototype


@SuppressWarnings("unchecked")
public static <K, V> ImmutableSetMultimap<K, V> of() 

Source Link

Document

Returns the empty multimap.

Usage

From source file:com.facebook.buck.rules.FakeJavaLibraryRule.java

@Override
public ImmutableSetMultimap<BuildRule, String> getDeclaredClasspathEntries() {
    return ImmutableSetMultimap.of();
}

From source file:com.google.caliper.functional.DefaultCaliperOptions.java

@Override
public ImmutableSetMultimap<String, String> userParameters() {
    return ImmutableSetMultimap.of();
}

From source file:com.google.caliper.functional.DefaultCaliperOptions.java

@Override
public ImmutableSetMultimap<String, String> vmArguments() {
    return ImmutableSetMultimap.of();
}

From source file:com.facebook.buck.cli.OwnersReport.java

static OwnersReport emptyReport() {
    return new OwnersReport(ImmutableSetMultimap.of(), Sets.newHashSet(), Sets.newHashSet(), Sets.newHashSet());
}

From source file:com.facebook.buck.rules.FakeJavaLibraryRule.java

@Override
public ImmutableSetMultimap<BuildRule, String> getTransitiveClasspathEntries() {
    return ImmutableSetMultimap.of();
}

From source file:grakn.core.graql.reasoner.unifier.UnifierImpl.java

/**
 * Identity unifier.
 */
public UnifierImpl() {
    this.unifier = ImmutableSetMultimap.of();
}

From source file:com.torodb.integration.mongo.v3m0.jstests.ScriptClassifier.java

@Nonnull
public Multimap<TestCategory, Script> getScriptFor(IntegrationTestEnvironment env) {
    Multimap<TestCategory, Script> result = scriptMap.get(env);
    if (result == null) {
        return ImmutableSetMultimap.of();
    }//from  w  w w .ja va2  s.  c  om
    return result;
}

From source file:org.sosy_lab.cpachecker.cpa.smg.refiner.SMGPrecision.java

public static SMGPrecision createRefineablePrecision(SMGPrecision pPrecision) {

    SetMultimap<CFANode, SMGMemoryPath> emptyMemoryPaths = ImmutableSetMultimap.of();
    SetMultimap<CFANode, SMGAbstractionBlock> emptyAbstractionBlocks = ImmutableSetMultimap.of();
    SetMultimap<CFANode, MemoryLocation> emptyStackVariable = ImmutableSetMultimap.of();

    return new SMGRefineablePrecision(pPrecision.logger,
            new SMGPrecisionAbstractionOptions(pPrecision.allowsHeapAbstraction(), true, true),
            pPrecision.getBlockOperator(), emptyMemoryPaths, emptyAbstractionBlocks, emptyStackVariable);
}

From source file:com.facebook.buck.java.FakeJavaLibraryRule.java

@Override
public ImmutableSetMultimap<JavaLibraryRule, String> getDeclaredClasspathEntries() {
    return ImmutableSetMultimap.of();
}

From source file:com.facebook.buck.java.FakeJavaLibraryRule.java

@Override
public ImmutableSetMultimap<JavaLibraryRule, String> getOutputClasspathEntries() {
    return ImmutableSetMultimap.of();
}