T
- The type of objects to be filtered.@Scriptable
@FunctionalInterface
public interface IFilter<T>
Modifier and Type | Method and Description |
---|---|
boolean |
accept(T p_obj) |
boolean accept(T p_obj)
p_obj
- The object to be filtered.true
if this filter accepts the given
object, or false
otherwise.