Package se.bjurr.violations.lib.reports
Enum Parser
- java.lang.Object
-
- java.lang.Enum<Parser>
-
- se.bjurr.violations.lib.reports.Parser
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Set<Violation>findViolations(ViolationsLogger violationsLogger, java.util.List<java.io.File> includedFiles)ViolationsParsergetViolationsParser()static ParservalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Parser[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ANDROIDLINT
public static final Parser ANDROIDLINT
-
ANSIBLELATER
public static final Parser ANSIBLELATER
-
CHECKSTYLE
public static final Parser CHECKSTYLE
-
CODENARC
public static final Parser CODENARC
-
CLANG
public static final Parser CLANG
-
COVERITY
public static final Parser COVERITY
-
CPD
public static final Parser CPD
-
CPPCHECK
public static final Parser CPPCHECK
-
CPPLINT
public static final Parser CPPLINT
-
CSSLINT
public static final Parser CSSLINT
-
GENERIC
public static final Parser GENERIC
-
GHS
public static final Parser GHS
-
FINDBUGS
public static final Parser FINDBUGS
-
FLAKE8
public static final Parser FLAKE8
-
MACHINE
public static final Parser MACHINE
-
FXCOP
public static final Parser FXCOP
-
GENDARME
public static final Parser GENDARME
-
IAR
public static final Parser IAR
-
JACOCO
public static final Parser JACOCO
-
JCREPORT
public static final Parser JCREPORT
-
JSLINT
public static final Parser JSLINT
-
JUNIT
public static final Parser JUNIT
-
LINT
public static final Parser LINT
-
KLOCWORK
public static final Parser KLOCWORK
-
KOTLINMAVEN
public static final Parser KOTLINMAVEN
-
KOTLINGRADLE
public static final Parser KOTLINGRADLE
-
MSCPP
public static final Parser MSCPP
-
MSBULDLOG
public static final Parser MSBULDLOG
-
MYPY
public static final Parser MYPY
-
GOLINT
public static final Parser GOLINT
-
GOOGLEERRORPRONE
public static final Parser GOOGLEERRORPRONE
-
PERLCRITIC
public static final Parser PERLCRITIC
-
PITEST
public static final Parser PITEST
-
PMD
public static final Parser PMD
-
PROTOLINT
public static final Parser PROTOLINT
-
PYDOCSTYLE
public static final Parser PYDOCSTYLE
-
PYLINT
public static final Parser PYLINT
-
RESHARPER
public static final Parser RESHARPER
-
SARIF
public static final Parser SARIF
-
SBTSCALAC
public static final Parser SBTSCALAC
-
SEMGREP
public static final Parser SEMGREP
-
SIMIAN
public static final Parser SIMIAN
-
SONAR
public static final Parser SONAR
-
STYLECOP
public static final Parser STYLECOP
-
XMLLINT
public static final Parser XMLLINT
-
YAMLLINT
public static final Parser YAMLLINT
-
ZPTLINT
public static final Parser ZPTLINT
-
DOCFX
public static final Parser DOCFX
-
PCLINT
public static final Parser PCLINT
-
CODECLIMATE
public static final Parser CODECLIMATE
-
XUNIT
public static final Parser XUNIT
-
VALGRIND
public static final Parser VALGRIND
-
-
Method Detail
-
values
public static Parser[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Parser c : Parser.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Parser valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
findViolations
public java.util.Set<Violation> findViolations(ViolationsLogger violationsLogger, java.util.List<java.io.File> includedFiles)
-
getViolationsParser
public ViolationsParser getViolationsParser()
-
-