Package rife.bld.extension.spotbugs
Enum Class Effort
- All Implemented Interfaces:
Serializable,Comparable<Effort>,Constable
Specifies changes to the analysis effort level.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe default level that provides the same feature withMORE.The effort level to reduce the computation cost.The effort level that maximizes the computation cost.The effort level to minimize the computation cost.The effort level that uses more computation cost. -
Method Summary
-
Enum Constant Details
-
MIN
The effort level to minimize the computation cost. SpotBugs will try to conserve space at the expense of precision. -
LESS
The effort level to reduce the computation cost. -
DEFAULT
The default level that provides the same feature withMORE. -
MORE
The effort level that uses more computation cost. SpotBugs will try to detect more problems by Interprocedural Analysis and Null Pointer Analysis. -
MAX
The effort level that maximizes the computation cost. SpotBugs will run Interprocedural Analysis of Referenced Classes.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-