| java.lang.Object org.ofbiz.entity.condition.EntityCondition
All known Subclasses: org.ofbiz.entity.condition.EntityDateFilterCondition, org.ofbiz.entity.condition.EntityWhereString, org.ofbiz.entity.condition.EntityExpr, org.ofbiz.entity.condition.EntityConditionFunction, org.ofbiz.entity.condition.EntityFunction, org.ofbiz.entity.condition.EntityFieldMap, org.ofbiz.entity.condition.EntityConditionList,
EntityCondition | abstract public class EntityCondition implements Serializable(Code) | | Represents the conditions to be used to constrain a query
An EntityCondition can represent various type of constraints, including:
- EntityConditionList: a list of EntityConditions, combined with the operator specified
- EntityExpr: for simple expressions or expressions that combine EntityConditions
- EntityFieldMap: a map of fields where the field (key) equals the value, combined with the operator specified
These can be used in various combinations using the EntityConditionList and EntityExpr objects.
author: David E. Jones version: $Revision: 1.4 $ since: 2.0 |
|
|