Uses of Interface
com.puppycrawl.tools.checkstyle.api.Filter
-
Packages that use Filter Package Description com.puppycrawl.tools.checkstyle Contains the implementation of the Checkstyle framework.com.puppycrawl.tools.checkstyle.api Contains the core API to be used to implement checks.com.puppycrawl.tools.checkstyle.filters Contains the filters that are bundled with the main distribution. -
-
Uses of Filter in com.puppycrawl.tools.checkstyle
Methods in com.puppycrawl.tools.checkstyle with parameters of type Filter Modifier and Type Method Description voidChecker. addFilter(Filter filter)Adds a filter to the end of the audit event filter chain.voidChecker. removeFilter(Filter filter)Removes filter. -
Uses of Filter in com.puppycrawl.tools.checkstyle.api
Classes in com.puppycrawl.tools.checkstyle.api that implement Filter Modifier and Type Class Description classFilterSetA filter set applies filters to AuditEvents.Methods in com.puppycrawl.tools.checkstyle.api that return types with arguments of type Filter Modifier and Type Method Description java.util.Set<Filter>FilterSet. getFilters()Returns the Filters of the filter set.Methods in com.puppycrawl.tools.checkstyle.api with parameters of type Filter Modifier and Type Method Description voidFilterSet. addFilter(Filter filter)Adds a Filter to the set.voidFilterSet. removeFilter(Filter filter)Removes filter. -
Uses of Filter in com.puppycrawl.tools.checkstyle.filters
Classes in com.puppycrawl.tools.checkstyle.filters that implement Filter Modifier and Type Class Description classSeverityMatchFilterThis is a very simple filter based on severity matching.classSuppressElementThis filter processesAuditEventobjects based on the criteria of file, check, module id, line, and column.classSuppressionFilterThis filter accepts AuditEvents according to file, check, line, and column, as specified in a suppression file.classSuppressWarningsFilterA filter that suppresses warnings using theSuppressWarningsannotation.classSuppressWithPlainTextCommentFilterA filter that uses comments to suppress audit events.
-