Package edu.umd.cs.findbugs
Enum BugRankCategory
- java.lang.Object
-
- java.lang.Enum<BugRankCategory>
-
- edu.umd.cs.findbugs.BugRankCategory
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<BugRankCategory>
public enum BugRankCategory extends java.lang.Enum<BugRankCategory>
Smaller value is scarier- See Also:
BugRanker
,Confidence
-
-
Enum Constant Summary
Enum Constants Enum Constant Description OF_CONCERN
SCARIEST
SCARY
TROUBLING
-
Field Summary
Fields Modifier and Type Field Description int
maxRank
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BugRankCategory
getRank(int rank)
java.lang.String
toString()
static BugRankCategory
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BugRankCategory[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SCARIEST
public static final BugRankCategory SCARIEST
-
SCARY
public static final BugRankCategory SCARY
-
TROUBLING
public static final BugRankCategory TROUBLING
-
OF_CONCERN
public static final BugRankCategory OF_CONCERN
-
-
Method Detail
-
values
public static BugRankCategory[] 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 (BugRankCategory c : BugRankCategory.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BugRankCategory 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
-
getRank
@Nonnull public static BugRankCategory getRank(int rank)
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<BugRankCategory>
-
-