Package net.sf.basedb.util.filter
Class IdentityFilter<T>
- java.lang.Object
-
- net.sf.basedb.util.filter.IdentityFilter<T>
-
-
Constructor Summary
Constructors Constructor Description IdentityFilter(T object)
Create a new filter.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
evaluate(T object)
Evaluate if the given object should pass the filter or not.
-
-
-
Field Detail
-
object
private final T object
-
-
Constructor Detail
-
IdentityFilter
public IdentityFilter(T object)
Create a new filter.- Parameters:
object
- The only object that should pass the filter
-
-