Interface Filter<E>
-
- Type Parameters:
E-
public interface Filter<E>Interface used to customize searches by filtering
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanaccept(E obj, java.lang.Object[] params)Returns true if the given entry with the specified params should be included in the results
-
-
-
Method Detail
-
accept
boolean accept(E obj, java.lang.Object[] params)
Returns true if the given entry with the specified params should be included in the results- Parameters:
obj- an entry in the searchparams-- Returns:
- true if obj should be included in the results
-
-