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

com.github.leeonky.jfactory.ArgumentMapFactory Maven / Gradle / Ivy

package com.github.leeonky.jfactory;

public class ArgumentMapFactory {
    public static ArgumentMap arg(String key, Object value) {
        ArgumentMap argumentMap = new ArgumentMap();
        argumentMap.put(key, value);
        return argumentMap;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy