Package org.khelekore.prtree
Interface NodeFilter<T>
-
- Type Parameters:
T
- the node type
- All Known Implementing Classes:
AcceptAll
public interface NodeFilter<T>
A node object filterer.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
accept(T t)
Check if the given node object is accepted
-
-
-
Method Detail
-
accept
boolean accept(T t)
Check if the given node object is accepted- Parameters:
t
- the node user data- Returns:
- True if the node is accepted, false otherwise
-
-