Uses of Class
com.google.errorprone.BugCheckerInfo
-
Uses of BugCheckerInfo in com.google.errorprone
Modifier and TypeMethodDescriptionstatic BugCheckerInfo
BugCheckerInfo.create
(Class<? extends BugChecker> checker) BugCheckerInfo.withCustomDefaultSeverity
(BugPattern.SeverityLevel defaultSeverity) -
Uses of BugCheckerInfo in com.google.errorprone.scanner
Modifier and TypeFieldDescriptionstatic final com.google.common.collect.ImmutableSet
<BugCheckerInfo> BuiltInCheckerSuppliers.DISABLED_CHECKS
A list of all checks that are off by default.static final com.google.common.collect.ImmutableSet
<BugCheckerInfo> BuiltInCheckerSuppliers.ENABLED_ERRORS
A list of all checks with severity ERROR that are on by default.static final com.google.common.collect.ImmutableSet
<BugCheckerInfo> BuiltInCheckerSuppliers.ENABLED_WARNINGS
A list of all checks with severity WARNING that are on by default.Modifier and TypeMethodDescriptionabstract com.google.common.collect.ImmutableBiMap
<String, BugCheckerInfo> ScannerSupplier.getAllChecks()
Returns a map of check name toBugCheckerInfo
for allBugCheckerInfo
s in thisScannerSupplier
, including disabled ones.abstract com.google.common.collect.ImmutableSet
<BugCheckerInfo> ScannerSupplier.getEnabledChecks()
Returns the set ofBugCheckerInfo
s that are enabled in thisScannerSupplier
.static com.google.common.collect.ImmutableSet
<BugCheckerInfo> BuiltInCheckerSuppliers.getSuppliers
(Class<? extends BugChecker>... checkers) static com.google.common.collect.ImmutableSet
<BugCheckerInfo> BuiltInCheckerSuppliers.getSuppliers
(Iterable<Class<? extends BugChecker>> checkers) Modifier and TypeMethodDescriptionScannerSupplier.filter
(com.google.common.base.Predicate<? super BugCheckerInfo> predicate) Filters thisScannerSupplier
based on the provided predicate.static ScannerSupplier
ScannerSupplier.fromBugCheckerInfos
(Iterable<BugCheckerInfo> checkers) Returns aScannerSupplier
built from a list ofBugCheckerInfo
s.