Skip to content

QRY_Condition.Nestable

Class

apex
global interface QRY_Condition.Nestable implements QRY_Condition.Evaluable

Implements: 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

MethodDescription
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

ParameterTypeDescription
conditionQRY_Condition.EvaluableThe condition to add.

Returns QRY_Condition.Nestable — The updated Nestable with the new condition added.