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

io.github.shanqiang.table.As Maven / Gradle / Ivy

package io.github.shanqiang.table;

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

public class As {
    private final Map map = new HashMap<>();

    public As as(String src, String dst) {
        map.put(src, dst);
        return this;
    }

    public Map build() {
        return map;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy