Interface QueryExecutor<T>
- Type Parameters:
T- Entity-Type to query
- All Known Implementing Classes:
CountQueryExecutor,ExistsQueryExecutor,ListQueryExecutor,PageableQueryExecutor,SingleOptionalQueryExecutor,SingleQueryExecutor
public interface QueryExecutor<T>
Queries the actual entities from the original entities.
-
Method Summary
-
Method Details
-
execute
Executes the created query over entities.The result is always a working copy of the entities.
- Parameters:
clazz- of the entitiesentities- where the query is executed onvalues- for the query. These are values that might be compared to entities.- Returns:
- entities/entity on which the conditions match.
-