Package org.refcodes.criteria
Interface QueryFactory<Q>
-
- Type Parameters:
Q- The type of the query statement, usually aString.
- All Known Subinterfaces:
PartitionQueryFactory<Q,PS>
- All Known Implementing Classes:
ExpressionQueryFactoryImpl
public interface QueryFactory<Q>TheQueryFactorygenerates a query from the providedCriteria(tree). The resulting query may be targeted at a database and therefore be SQL like. CAUTION: The syntax supported for the query statement is implementation depended!- Version:
- $Id: $Id
- Author:
- steiner
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description QfromCriteria(Criteria aCriteria)Generates a query from the providedCriteria(tree).
-