Uses of Class
com.google.errorprone.BugCheckerInfo
Packages that use BugCheckerInfo
-
Uses of BugCheckerInfo in com.google.errorprone
Methods in com.google.errorprone that return BugCheckerInfoModifier and TypeMethodDescriptionstatic BugCheckerInfoBugCheckerInfo.create(Class<? extends BugChecker> checker) BugCheckerInfo.withCustomDefaultSeverity(BugPattern.SeverityLevel defaultSeverity) -
Uses of BugCheckerInfo in com.google.errorprone.scanner
Fields in com.google.errorprone.scanner with type parameters of type BugCheckerInfoModifier and TypeFieldDescriptionstatic final com.google.common.collect.ImmutableSet<BugCheckerInfo> BuiltInCheckerSuppliers.DISABLED_CHECKSA list of all checks that are off by default.static final com.google.common.collect.ImmutableSet<BugCheckerInfo> BuiltInCheckerSuppliers.ENABLED_ERRORSA list of all checks with severity ERROR that are on by default.static final com.google.common.collect.ImmutableSet<BugCheckerInfo> BuiltInCheckerSuppliers.ENABLED_WARNINGSA list of all checks with severity WARNING that are on by default.Methods in com.google.errorprone.scanner that return types with arguments of type BugCheckerInfoModifier and TypeMethodDescriptionabstract com.google.common.collect.ImmutableBiMap<String, BugCheckerInfo> ScannerSupplier.getAllChecks()Returns a map of check name toBugCheckerInfofor allBugCheckerInfos in thisScannerSupplier, including disabled ones.abstract com.google.common.collect.ImmutableSet<BugCheckerInfo> ScannerSupplier.getEnabledChecks()Returns the set ofBugCheckerInfos 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) Method parameters in com.google.errorprone.scanner with type arguments of type BugCheckerInfoModifier and TypeMethodDescriptionScannerSupplier.filter(com.google.common.base.Predicate<? super BugCheckerInfo> predicate) Filters thisScannerSupplierbased on the provided predicate.static ScannerSupplierScannerSupplier.fromBugCheckerInfos(Iterable<BugCheckerInfo> checkers) Returns aScannerSupplierbuilt from a list ofBugCheckerInfos.