Criteria.php
42 public function __construct($type, $attribute, $operator, $value, $combineOperator=Criteria::OPERATOR_AND) {
static asValue($operator, $value)
Factory method for constructing a Criteria that may be used as value on a PersistentObject's attribut...
Definition: Criteria.php:58
Criteria defines a condition on a PersistentObject's attribute used to select specific instances.
Definition: Criteria.php:21
setCombineOperator($combineOperator)
Set the Criteria::OPERATOR to use, when this criteria is combined with other criteria.
Definition: Criteria.php:132
setOperator($operator)
Set the comparison operator used to compare the given value with the attribute's value.
Definition: Criteria.php:99
__construct($type, $attribute, $operator, $value, $combineOperator=Criteria::OPERATOR_AND)
Constructor.
Definition: Criteria.php:42
getOperator()
Get the comparison operator used to compare the given value with the attribute's value.
Definition: Criteria.php:108
getCombineOperator()
Get the Criteria::OPERATOR to use, when this criteria is combined with other criteria.
Definition: Criteria.php:140