Interface AnyMatchDAO
-
- All Known Implementing Classes:
JPAAnyMatchDAO
public interface AnyMatchDAO extends DAO<Any<?>>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T extends Any<?>>
booleanmatches(T any, SearchCond cond)
Verify if any matches the given search condition.
-
-
-
Method Detail
-
matches
<T extends Any<?>> boolean matches(T any, SearchCond cond)
Verify if any matches the given search condition.- Type Parameters:
T
- any- Parameters:
any
- to be checkedcond
- to be verified- Returns:
- true if any matches cond
-
-