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

com.selesse.jxlint.model.JxlintOption Maven / Gradle / Ivy

The newest version!
package com.selesse.jxlint.model;

public enum JxlintOption {
    OUTPUT_TYPE("outputType"),
    SHOW("show"),
    HELP("help"),
    VERSION("version"),
    LIST("list"),
    WEB("web"),
    WARNINGS_ARE_ERRORS("Werror"),
    CHECK("check"),
    ALL_WARNINGS("Wall"),
    NO_WARNINGS("nowarn"),
    DISABLE("disable"),
    ENABLE("enable"),
    OUTPUT_TYPE_PATH("outputTypePath"),
    REPORT_RULES("rules"),
    PROFILE("profile"),
    CATEGORY("category"),
    SRC_PATH_PREFIX("srcpath"),
    ;

    private String optionString;

    JxlintOption(String optionString) {
        this.optionString = optionString;
    }

    public String getOptionString() {
        return optionString;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy