org.ofbiz.entity.condition |
|
Java Source File Name | Type | Comment |
EntityClause.java | Class | Generic Entity Clause - Used to string together entities to make a find clause
author: Chris Maurer author: David E. |
EntityComparisonOperator.java | Class | Encapsulates operations between entities and entity fields. |
EntityCondition.java | Class | 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. |
EntityConditionFunction.java | Class | Encapsulates operations between entities and entity fields. |
EntityConditionList.java | Class | Encapsulates a list of EntityConditions to be used as a single EntityCondition combined as specified
author: David E. |
EntityConditionParam.java | Class | Represents a single parameter to be used in the preparedStatement
author: David E. |
EntityDateFilterCondition.java | Class | |
EntityExpr.java | Class | Encapsulates simple expressions used for specifying queries
author: David E. |
EntityFieldMap.java | Class | Encapsulates simple expressions used for specifying queries
author: David E. |
EntityFunction.java | Class | Encapsulates operations between entities and entity fields. |
EntityJoinOperator.java | Class | Encapsulates operations between entities and entity fields. |
EntityOperator.java | Class | Encapsulates operations between entities and entity fields. |
EntityWhereString.java | Class | Encapsulates SQL expressions used for where clause snippets.
NOTE: This is UNSAFE and BREAKS the idea behind the Entity Engine where
you avoid directly specifying SQL. |