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

io.github.antoniopetricca.maven.plugins.filemerger.configuration.AbstractFile Maven / Gradle / Ivy

Go to download

Loads and merges text/code/configuration external files into another one by placeholders.

The newest version!
package io.github.antoniopetricca.maven.plugins.filemerger.configuration;

import java.nio.charset.StandardCharsets;

public abstract class AbstractFile extends AbstractValidObject {

    private String  charset   = StandardCharsets.UTF_8.name();
    private boolean filtering = false;

    public String getCharset() {
        return charset;
    }

    public boolean isFiltering() {
        return filtering;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy