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(K k1, V v1, K k2, V v2) 

Source Link

Usage

From source file:com.eviware.loadui.impl.layout.SeparatorLayoutComponentImpl.java

public SeparatorLayoutComponentImpl(boolean vertical, String constraints) {
    this(ImmutableMap.of(VERTICAL, vertical, CONSTRAINTS, constraints));
}

From source file:org.graylog2.restclient.lib.timeranges.RelativeRange.java

@Override
public Map<String, String> getQueryParams() {
    return ImmutableMap.of("range_type", getType().toString().toLowerCase(), "range", String.valueOf(range));
}

From source file:com.creactiviti.piper.core.event.PiperEvent.java

public static PiperEvent of(String aType, String aKey1, Object aValue1, String aKey2, Object aValue2) {
    Assert.notNull(aKey1, "key must not be null");
    Assert.notNull(aValue1, "value for " + aKey1 + " must not be null");
    Assert.notNull(aKey2, "key must not be null");
    Assert.notNull(aValue2, "value for " + aKey2 + " must not be null");
    return of(aType, ImmutableMap.of(aKey1, aValue1, aKey2, aValue2));
}

From source file:co.cask.cdap.data2.transaction.metrics.TransactionManagerMetricsCollector.java

@Inject
public TransactionManagerMetricsCollector(MetricsCollectionService service) {
    this.metricsContext = service.getContext(ImmutableMap.of(Constants.Metrics.Tag.NAMESPACE,
            Constants.SYSTEM_NAMESPACE, Constants.Metrics.Tag.COMPONENT, "transactions"));
}

From source file:org.graylog2.restclient.lib.timeranges.KeywordRange.java

@Override
public Map<String, String> getQueryParams() {
    return ImmutableMap.of("range_type", getType().toString().toLowerCase(), "keyword",
            String.valueOf(keyword));
}

From source file:com.streamsets.datacollector.vault.api.Authenticate.java

public Secret appId(String appId, String userId) throws VaultException {
    HttpContent content = new JsonHttpContent(getJsonFactory(),
            ImmutableMap.of("app_id", appId, "user_id", userId));
    return getSecret("/v1/auth/app-id/login", "POST", content);
}

From source file:com.facebook.buck.android.FakeAndroidBuckConfig.java

public AndroidBuckConfig build() {
    return new AndroidBuckConfig(FakeBuckConfig.builder().setSections(ImmutableMap.of("android",
            ImmutableMap.copyOf(androidSection), "ndk", ImmutableMap.copyOf(ndkSection))).build(),
            Platform.detect());/*from www  .jav  a  2s.  c om*/
}

From source file:com.google.gitiles.CommentLinkInfo.java

private static void addLink(List<Map<String, String>> parts, String text, String url) {
    parts.add(ImmutableMap.of("text", text, "url", url));
}

From source file:org.terasology.dialogs.action.NewDialogActionTypeHandler.java

@Override
public PersistedData serialize(NewDialogAction action, SerializationContext context) {
    Map<String, PersistedData> data = ImmutableMap.of("type", context.create(action.getClass().getSimpleName()),
            "target", context.create(action.getTarget()));

    return context.create(data);
}

From source file:com.brighttag.agathon.servlet.ServletModule.java

@Override
protected void configureServlets() {
    serve("/*").with(GuiceContainer.class,
            ImmutableMap.of(JSONConfiguration.FEATURE_POJO_MAPPING, "true",
                    PackagesResourceConfig.PROPERTY_PACKAGES,
                    "com.brighttag.agathon.resources,com.fasterxml.jackson.jaxrs.json"));
}