com.selesse.jxlint.model.JxlintOption Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jxlint Show documentation
Show all versions of jxlint Show documentation
Framework for doing static analysis in Java
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;
}
}