Package net.sf.jkniv.whinstone
Interface Filter<T>
-
- Type Parameters:
T- the type of the items to be filtered
public interface Filter<T>Represents a filter to select the items.- Since:
- 0.6.6
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisEqual(T item)Search the items that attend the filter
-
-
-
Method Detail
-
isEqual
boolean isEqual(T item)
Search the items that attend the filter- Parameters:
item- items from database query- Returns:
truewhen the item match with filter,falseothewise
-
-