QRY_Condition.Nestable
Class
apex
global interface QRY_Condition.Nestable implements QRY_Condition.EvaluableImplements: QRY_Condition.Evaluable
Known Derived Types: QRY_Condition.AndCondition.add(QRY_Condition.Evaluable), QRY_Condition.OrCondition.add(QRY_Condition.Evaluable)
Interface for condition containers that support adding nested conditions. Extends Evaluable so groups can be passed to QRY_Builder.addCondition().
Methods
| Method | Description |
|---|---|
| global abstract QRY_Condition.Nestable add(QRY_Condition.Evaluable condition) | Adds a condition to this group. |
add
apex
global abstract QRY_Condition.Nestable add(QRY_Condition.Evaluable condition)Adds a condition to this group.
Parameters
| Parameter | Type | Description |
|---|---|---|
condition | QRY_Condition.Evaluable | The condition to add. |
Returns QRY_Condition.Nestable — The updated Nestable with the new condition added.