iffs property
final
A set of conditional items to check against for execution, in order.
The first item should be an Iff
, and if an Else is included it must
be the last item. Any other items should be ElseIf. It is okay to
make the first item an ElseIf, it will act just like an Iff
. If an
Else is included, it cannot be the only element (it must be preceded
by an Iff
or ElseIf).
Implementation
final List<Iff> iffs;