All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jolokia.test.util.CollectionTestUtil Maven / Gradle / Ivy

There is a newer version: 2.2.1
Show newest version
package org.jolokia.test.util;

import java.util.HashMap;
import java.util.Map;

/**
 * @author roland
 * @since 21.03.13
 */
public class CollectionTestUtil {

    public static Map newMap(String ... args) {
        Map ret = new HashMap<>();
        for (int i = 0; i < args.length; i +=2) {
            ret.put(args[i],args[i+1]);
        }
        return ret;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy