public interface IFilter<T>
| Modifier and Type | Field and Description | 
|---|---|
| static IFilter<java.lang.Object> | ALWAYSA filter that always returns true. | 
| static IFilter<java.lang.Object> | NEVERA filter that always returns false. | 
| Modifier and Type | Method and Description | 
|---|---|
| boolean | filter(T obj)Test if an object passes the filter. | 
static final IFilter<java.lang.Object> ALWAYS
static final IFilter<java.lang.Object> NEVER
boolean filter(T obj)