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

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

Introduction

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

Prototype

public static <K, V> ImmutableMap<K, V> of() 

Source Link

Usage

From source file:com.facebook.buck.core.toolchain.tool.impl.testutil.SimpleTool.java

@Override
public ImmutableMap<String, String> getEnvironment(SourcePathResolver resolver) {
    return ImmutableMap.of();
}

From source file:io.github.holasylk.collect.guava.test.EqualityTestFactoryImpl.java

@Override
public Map<String, Runnable> createEntries() {
    Stream.of(GuavaCollectors.class.getDeclaredMethods()).filter(m -> {
        int i = m.getModifiers();
        return isPublic(i) && isStatic(i) && Collector.class.isAssignableFrom(m.getReturnType());
    });/* w w  w  . j  a  v a 2 s.  c  o m*/

    return ImmutableMap.of();
}

From source file:org.sosy_lab.cpachecker.cpa.smg.SMGStateInformation.java

private SMGStateInformation() {
    hvEdges = ImmutableSet.of();
    ptEdges = ImmutableMap.of();
}

From source file:co.cask.cdap.common.namespace.SimpleNamespaceQueryAdmin.java

public SimpleNamespaceQueryAdmin() {
    this.customNSMap = ImmutableMap.of();
}

From source file:com.google.devtools.build.lib.worker.WorkerActionContextConsumer.java

@Override
public ImmutableMap<String, String> getSpawnActionContexts() {
    return ImmutableMap.of();
}

From source file:com.google.devtools.build.lib.rules.java.JavaRuntimeToolchainInfo.java

@AutoCodec.Instantiator
public JavaRuntimeToolchainInfo(JavaRuntimeInfo javaRuntime) {
    super(ImmutableMap.of(), Location.BUILTIN);
    this.javaRuntime = javaRuntime;
}

From source file:org.apache.druid.cli.convert.Remove.java

@Override
public Map<String, String> convert(Properties properties) {
    return ImmutableMap.of();
}

From source file:com.icosilune.fn.nodes.SinkNode.java

@Override
public Map<String, Socket> getOutputSockets() {
    return ImmutableMap.of();
}

From source file:com.facebook.buck.cxx.NoopDebugPathSanitizer.java

@Override
public ImmutableMap<String, String> getCompilationEnvironment(Path workingDir, boolean shouldSanitize) {
    return ImmutableMap.of();
}

From source file:com.tkmtwo.interpolate.MappingInterpolatorCallback.java

/**
 * Creates a new interpolator with an empty map.
 *
 */
public MappingInterpolatorCallback() {
    map = ImmutableMap.of();
}