| Package | system.logic |
| Class | public class ElseIf |
| Inheritance | ElseIf Object |
| Implements | Rule |
| Subclasses | ElseIfEmptyString, ElseIfEquals, ElseIfFalse, ElseIfGreaterOrEqualsThan, ElseIfGreaterThan, ElseIfLessOrEqualsThan, ElseIfLessThan, ElseIfNull, ElseIfTrue, ElseIfZero |
See also
| Property | Defined By | ||
|---|---|---|---|
| rule : Rule
The conditional rule of the 'elseif' block. | ElseIf | ||
| then : Action
The then action of the 'elseif' block. | ElseIf | ||
| Method | Defined By | ||
|---|---|---|---|
Creates a new ElseIf instance. | ElseIf | ||
eval():Boolean
Evaluates a specific condition. | ElseIf | ||
| rule | property |
public var rule:RuleThe conditional rule of the 'elseif' block.
| then | property |
public var then:ActionThe then action of the 'elseif' block.
| ElseIf | () | Constructor |
public function ElseIf(rule:* = null, then:Action = null)Creates a new ElseIf instance.
Parametersrule:* (default = null) — The Rule of the conditional block.
| |
then:Action (default = null) — The Action to execute if the condition is true.
|
| eval | () | method |
public function eval():BooleanEvaluates a specific condition.
ReturnsBoolean |