Interface WhereClauseMatchCriteria
-
- All Known Implementing Classes:
AbstractWhereClauseMatchCriteria,MaxAgeWhereClauseMatchCriteria,NoMatchWhereClauseMatchCriteria
public interface WhereClauseMatchCriteriaInterface describing match criteria in terms of a SQL select clause.- Since:
- 1.0
- Version:
- $Revision: $
- Author:
- Middleware
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<?>getParameterValues()java.lang.StringtoString()
-
-
-
Method Detail
-
getParameterValues
java.util.List<?> getParameterValues()
- Returns:
- Immutable list of parameter values for a parameterized query or an empty list if the where clause is not parameterized.
-
toString
java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object- Returns:
- The where clause text beginning with the string " WHERE" such that the return value can be directly appended to a SQL statement with no where clause.
-
-