Package edu.umd.cs.findbugs
Interface ExitCodes
-
public interface ExitCodes
Flags returned in the process exit code returned when the FindBugs text UI is invoked with the -exitcode command line argument. These are combined in a bit set.
-
-
Field Summary
Fields Modifier and Type Field Description static int
BUGS_FOUND_FLAG
Bugs were reported.static int
ERROR_FLAG
Serious analysis errors occurred.static int
MISSING_CLASS_FLAG
Classes needed for analysis were missing.
-
Method Summary
Static Methods Modifier and Type Method Description static int
from(int errors, int missingClasses, int bugs)
-
-
-
Field Detail
-
ERROR_FLAG
static final int ERROR_FLAG
Serious analysis errors occurred.- See Also:
- Constant Field Values
-
MISSING_CLASS_FLAG
static final int MISSING_CLASS_FLAG
Classes needed for analysis were missing.- See Also:
- Constant Field Values
-
BUGS_FOUND_FLAG
static final int BUGS_FOUND_FLAG
Bugs were reported.- See Also:
- Constant Field Values
-
-