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:vars.shared.ui.VARSImageCanvas.java

@Override
public void paint(Graphics g) {
    // We want to anti-alias the images. Otherwise, HD images look crappy
    if (interpolationHint != null) {
        Graphics2D g2 = (Graphics2D) g;
        g2.addRenderingHints(ImmutableMap.of(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON,
                RenderingHints.KEY_INTERPOLATION, interpolationHint));
    }/*www .  j  a v a  2s.  c om*/

    super.paint(g);
}

From source file:org.openqa.selenium.remote.AddFindsByCss.java

public InterfaceImplementation getImplementation(Object value) {
    return new InterfaceImplementation() {

        public Object invoke(ExecuteMethod executeMethod, Object self, Method method, Object... args) {
            Map<String, ?> commandArgs = ImmutableMap.of("using", "css selector", "value", args[0]);

            if ("findElementByCssSelector".equals(method.getName())) {
                return executeMethod.execute(DriverCommand.FIND_ELEMENT, commandArgs);
            } else if ("findElementsByCssSelector".equals(method.getName())) {
                return executeMethod.execute(DriverCommand.FIND_ELEMENTS, commandArgs);
            }//from   w  ww.ja v a 2 s  . c  o  m

            throw new WebDriverException("Unmapped method: " + method.getName());
        }
    };
}

From source file:edu.cmu.lti.oaqa.baseqa.passage.rerank.scorers.OriginalScorePassageScorer.java

@Override
public Map<String, Double> score(JCas jcas, Passage result) {
    return ImmutableMap.of("original/rank", 1.0 / (result.getRank() + 1.0), "original/score",
            result.getScore());/*from   w  w  w  . j  av  a2 s. com*/
}

From source file:com.haulmont.chile.core.datatypes.impl.AbstractDatatypeTestCase.java

public void setUp() {
    ruLocale = Locale.forLanguageTag("ru");
    enGbLocale = Locale.forLanguageTag("en_GB");

    addEntityPackage("com.haulmont.cuba");
    setupInfrastructure();//ww  w  . j  a v  a  2s  . c om

    new NonStrictExpectations() {
        {
            AppContext.getProperty("cuba.mainMessagePack");
            result = "com.haulmont.cuba.gui";
            globalConfig.getAvailableLocales();
            result = ImmutableMap.of("ru", ruLocale, "en_GB", enGbLocale);
        }
    };
    messages.init();
}

From source file:com.opengamma.web.analytics.formatting.CurrencyPairsFormatter.java

private Map<String, Object> formatExpanded(CurrencyPairs currencyPairs) {
    Set<CurrencyPair> pairs = currencyPairs.getPairs();
    List<String> pairNames = Lists.newArrayListWithCapacity(pairs.size());
    for (CurrencyPair pair : pairs) {
        pairNames.add(pair.getName());// w  w w. j  a v a  2 s  . co  m
    }
    Collections.sort(pairNames);
    return ImmutableMap.of(DATA, pairNames, LABEL, CURRENCY_PAIRS);
}

From source file:org.sonar.api.config.Encryption.java

Encryption(Settings settings) {
    aesCipher = new AesCipher(settings);
    ciphers = ImmutableMap.of(BASE64_ALGORITHM, new Base64Cipher(), AES_ALGORITHM, aesCipher);
}