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 void
Checker. addFilter(Filter filter)
Adds a filter to the end of the audit event filter chain.void
Checker. 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 class
FilterSet
A filter set applies filters to AuditEvents.Fields in com.puppycrawl.tools.checkstyle.api with type parameters of type Filter Modifier and Type Field Description private Set<Filter>
FilterSet. filters
Filter set.Methods in com.puppycrawl.tools.checkstyle.api that return types with arguments of type Filter Modifier and Type Method Description 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 void
FilterSet. addFilter(Filter filter)
Adds a Filter to the set.void
FilterSet. 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 class
SeverityMatchFilter
FilterSeverityMatchFilter
decides audit events according to the severity level of the event.class
SuppressFilterElement
This filter element is immutable and processesAuditEvent
objects based on the criteria of file, check, module id, line, and column.class
SuppressionFilter
FilterSuppressionFilter
rejects audit events for Check violations according to a suppressions XML document in a file.class
SuppressionSingleFilter
FilterSuppressionSingleFilter
suppresses audit events for Checks violations in the specified file, class, checks, message, module id, lines, and columns.class
SuppressWarningsFilter
FilterSuppressWarningsFilter
uses annotation@SuppressWarnings
to suppress audit events.class
SuppressWithNearbyTextFilter
FilterSuppressWithNearbyTextFilter
uses plain text to suppress nearby audit events.class
SuppressWithPlainTextCommentFilter
FilterSuppressWithPlainTextCommentFilter
uses plain text to suppress audit events.
-