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

hr.com.vgv.verano.http.JoinedDict Maven / Gradle / Ivy

There is a newer version: 0.41
Show newest version
package hr.com.vgv.verano.http;

import org.cactoos.iterable.Joined;

public class JoinedDict extends Dict.Template
{
    public JoinedDict(Kvp kvp, Dict dict) {
        this(new HashDict(kvp), dict);
    }

    public JoinedDict(DictInput input, Dict dict) {
        this(new DictOf(input), dict);
    }

    public JoinedDict(Dict... dicts)
    {
        super(() -> new HashDict(new Joined<>(dicts)));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy