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

com.lyncode.builder.MapBuilder Maven / Gradle / Ivy

package com.lyncode.builder;

import java.util.Map;
import java.util.TreeMap;

public class MapBuilder implements Builder> {
    private Map map = new TreeMap();

    public MapBuilder withPair(K key, V value) {
        map.put(key, value);
        return this;
    }

    public Map build() {
        return this.map;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy