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 TypeMethodDescriptionbooleanaccept(TreeWalkerAuditEvent treeWalkerAuditEvent) Determines whether or not a filteredTreeWalkerAuditEventis accepted. 
- 
Method Details
- 
accept
Determines whether or not a filteredTreeWalkerAuditEventis accepted.- Parameters:
 treeWalkerAuditEvent- the TreeWalkerAuditEvent to filter.- Returns:
 - true if the event is accepted.
 
 
 -