Package se.bjurr.violations.lib.reports
Enum Reporter
- java.lang.Object
-
- java.lang.Enum<Reporter>
-
- se.bjurr.violations.lib.reports.Reporter
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetName()java.lang.StringgetNote()ParsergetParser()java.lang.StringgetUrl()static ReportervalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Reporter[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ARMGCC
public static final Reporter ARMGCC
-
ANDROIDLINT
public static final Reporter ANDROIDLINT
-
ANSIBLELATER
public static final Reporter ANSIBLELATER
-
ANSIBLELINT
public static final Reporter ANSIBLELINT
-
BANDIT
public static final Reporter BANDIT
-
CLANG
public static final Reporter CLANG
-
COVERITY
public static final Reporter COVERITY
-
CFN
public static final Reporter CFN
-
CPD
public static final Reporter CPD
-
CPPCHECK
public static final Reporter CPPCHECK
-
CPPLINT
public static final Reporter CPPLINT
-
CSSLINT
public static final Reporter CSSLINT
-
CHECKSTYLE
public static final Reporter CHECKSTYLE
-
CODENARC
public static final Reporter CODENARC
-
CODECLIMATE
public static final Reporter CODECLIMATE
-
DEPENDENCYCHECK
public static final Reporter DEPENDENCYCHECK
-
DETEKT
public static final Reporter DETEKT
-
ERB
public static final Reporter ERB
-
DOCFX
public static final Reporter DOCFX
-
DOXYGEN
public static final Reporter DOXYGEN
-
ESLINT
public static final Reporter ESLINT
-
FINDBUGS
public static final Reporter FINDBUGS
-
FLAKE8
public static final Reporter FLAKE8
-
DART
public static final Reporter DART
-
FXCOP
public static final Reporter FXCOP
-
GCC
public static final Reporter GCC
-
GHS
public static final Reporter GHS
-
GENDARME
public static final Reporter GENDARME
-
GENERIC
public static final Reporter GENERIC
-
GOLINT
public static final Reporter GOLINT
-
GOLANGLINT
public static final Reporter GOLANGLINT
-
GOVET
public static final Reporter GOVET
-
GOOGLEERRORPRONE
public static final Reporter GOOGLEERRORPRONE
-
HADOLINT
public static final Reporter HADOLINT
-
INFER
public static final Reporter INFER
-
IAR
public static final Reporter IAR
-
JACOCO
public static final Reporter JACOCO
-
JCREPORT
public static final Reporter JCREPORT
-
JSHINT
public static final Reporter JSHINT
-
JUNIT
public static final Reporter JUNIT
-
KTLINT
public static final Reporter KTLINT
-
KLOCWORK
public static final Reporter KLOCWORK
-
KOTLINGRADLE
public static final Reporter KOTLINGRADLE
-
KOTLINMAVEN
public static final Reporter KOTLINMAVEN
-
LINT
public static final Reporter LINT
-
MCCABE
public static final Reporter MCCABE
-
MYPY
public static final Reporter MYPY
-
MSBUILDLOG
public static final Reporter MSBUILDLOG
-
MSCPP
public static final Reporter MSCPP
-
NULLAWAY
public static final Reporter NULLAWAY
-
PCLINT
public static final Reporter PCLINT
-
PHPCS
public static final Reporter PHPCS
-
PHPPMD
public static final Reporter PHPPMD
-
PMD
public static final Reporter PMD
-
PEP8
public static final Reporter PEP8
-
PERLCRITIC
public static final Reporter PERLCRITIC
-
PITEST
public static final Reporter PITEST
-
PROTOLINT
public static final Reporter PROTOLINT
-
PUPPETLINT
public static final Reporter PUPPETLINT
-
PYDOCSTYLE
public static final Reporter PYDOCSTYLE
-
PYFLAKES
public static final Reporter PYFLAKES
-
PYLINT
public static final Reporter PYLINT
-
RESHARPER
public static final Reporter RESHARPER
-
RUBYCOP
public static final Reporter RUBYCOP
-
SARIF
public static final Reporter SARIF
-
SBTSCALAC
public static final Reporter SBTSCALAC
-
SEMGREP
public static final Reporter SEMGREP
-
SIMIAN
public static final Reporter SIMIAN
-
SPOTBUGS
public static final Reporter SPOTBUGS
-
STYLECOP
public static final Reporter STYLECOP
-
SWIFTLINT
public static final Reporter SWIFTLINT
-
SONAR
public static final Reporter SONAR
-
TSLINT
public static final Reporter TSLINT
-
VALGRIND
public static final Reporter VALGRIND
-
XUNIT
public static final Reporter XUNIT
-
XMLLINT
public static final Reporter XMLLINT
-
YAMLLINT
public static final Reporter YAMLLINT
-
ZPTLINT
public static final Reporter ZPTLINT
-
SCALASTYLE
public static final Reporter SCALASTYLE
-
-
Method Detail
-
values
public static Reporter[] 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 (Reporter c : Reporter.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Reporter 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
-
getParser
public Parser getParser()
-
getName
public java.lang.String getName()
-
getUrl
public java.lang.String getUrl()
-
getNote
public java.lang.String getNote()
-
-