Uses of Class
com.google.errorprone.BugCheckerInfo
Package | Description |
---|---|
com.google.errorprone | |
com.google.errorprone.scanner |
-
Uses of BugCheckerInfo in com.google.errorprone
Methods in com.google.errorprone that return BugCheckerInfo Modifier and Type Method Description static BugCheckerInfo
BugCheckerInfo. create(Class<? extends BugChecker> checker)
BugCheckerInfo
BugCheckerInfo. withCustomDefaultSeverity(BugPattern.SeverityLevel defaultSeverity)
-
Uses of BugCheckerInfo in com.google.errorprone.scanner
Fields in com.google.errorprone.scanner with type parameters of type BugCheckerInfo Modifier and Type Field Description static com.google.common.collect.ImmutableSet<BugCheckerInfo>
BuiltInCheckerSuppliers. DISABLED_CHECKS
A list of all checks that are off by default.static com.google.common.collect.ImmutableSet<BugCheckerInfo>
BuiltInCheckerSuppliers. ENABLED_ERRORS
A list of all checks with severity ERROR that are on by default.static com.google.common.collect.ImmutableSet<BugCheckerInfo>
BuiltInCheckerSuppliers. ENABLED_WARNINGS
A 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 BugCheckerInfo Modifier and Type Method Description abstract 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)
Method parameters in com.google.errorprone.scanner with type arguments of type BugCheckerInfo Modifier and Type Method Description ScannerSupplier
ScannerSupplier. 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.