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

cdc.io.txt.Replacements Maven / Gradle / Ivy

package cdc.io.txt;

import java.util.List;

public class Replacements {
    private final List list;

    public Replacements(Replacement... replacements) {
        this.list = List.of(replacements);
    }

    public String apply(String s) {
        for (final Replacement replacement : list) {
            s = replacement.apply(s);
        }
        return s;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy