Package com.puppycrawl.tools.checkstyle
Interface TreeWalkerFilter
- All Known Implementing Classes:
SuppressionCommentFilter
,SuppressionXpathFilter
,SuppressionXpathSingleFilter
,SuppressWithNearbyCommentFilter
,XpathFileGeneratorAstFilter
,XpathFilterElement
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
An interface for filtering
TreeWalkerAuditEvent
.-
Method Summary
Modifier and TypeMethodDescriptionboolean
accept
(TreeWalkerAuditEvent treeWalkerAuditEvent) Determines whether or not a filteredTreeWalkerAuditEvent
is accepted.
-
Method Details
-
accept
Determines whether or not a filteredTreeWalkerAuditEvent
is accepted.- Parameters:
treeWalkerAuditEvent
- the TreeWalkerAuditEvent to filter.- Returns:
- true if the event is accepted.
-