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
Modifier and TypeFieldDescriptionstatic final int
Bugs were reported.static final int
Serious analysis errors occurred.static final int
Classes needed for analysis were missing. -
Method Summary
-
Field Details
-
ERROR_FLAG
static final int ERROR_FLAGSerious analysis errors occurred.- See Also:
-
MISSING_CLASS_FLAG
static final int MISSING_CLASS_FLAGClasses needed for analysis were missing.- See Also:
-
BUGS_FOUND_FLAG
static final int BUGS_FOUND_FLAGBugs were reported.- See Also:
-
-
Method Details
-
from
static int from(int errors, int missingClasses, int bugs)
-