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.Fields in com.puppycrawl.tools.checkstyle.api with type parameters of type Filter Modifier and Type Field Description private java.util.Set<Filter>FilterSet. filtersFilter set.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 classSeverityMatchFilterFilterSeverityMatchFilterdecides audit events according to the severity level of the event.classSuppressFilterElementThis filter element is immutable and processesAuditEventobjects based on the criteria of file, check, module id, line, and column.classSuppressionFilterFilterSuppressionFilterrejects audit events for Check violations according to a suppressions XML document in a file.classSuppressionSingleFilterFilterSuppressionSingleFiltersuppresses audit events for Checks violations in the specified file, class, checks, message, module id, lines, and columns.classSuppressWarningsFilterFilterSuppressWarningsFilteruses annotationSuppressWarningsto suppress audit events.classSuppressWithPlainTextCommentFilterFilterSuppressWithPlainTextCommentFilteruses plain text to suppress audit events.
-