Package edu.umd.cs.findbugs.sarif
Enum Level
- All Implemented Interfaces:
Serializable
,Comparable<Level>
,java.lang.constant.Constable
An enum representing
level
property.- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe rule specified by ruleId was evaluated and a serious problem was found.The concept of “severity” does not apply to this result because the kind property (§3.27.9) has a value other than "fail".The rule specified by ruleId was evaluated and a minor problem or an opportunity to improve the code was found.The rule specified by ruleId was evaluated and a problem was found. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription(package private) static Level
fromBugRank
(int bugRank) (package private) static Level
fromWeaknessSeverity
(WeaknessSeverity severity) static Level
Returns the enum constant of this type with the specified name.static Level[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
WARNING
The rule specified by ruleId was evaluated and a problem was found. -
ERROR
The rule specified by ruleId was evaluated and a serious problem was found. -
NOTE
The rule specified by ruleId was evaluated and a minor problem or an opportunity to improve the code was found. -
NONE
The concept of “severity” does not apply to this result because the kind property (§3.27.9) has a value other than "fail".
-
-
Constructor Details
-
Level
private Level()
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
toJsonString
-
fromBugRank
-
fromWeaknessSeverity
-