Iterates over all conditions and returns true as soon as one evaluates to true.
returntrue if any of the contained conditions evaluate to trueexceptionBuildException if an error occurs Enumeration e = getConditions(); while (e.hasMoreElements()) { Condition c = (Condition) e.nextElement(); if (c.eval()) { return true; } } return false;
Enumeration e = getConditions(); while (e.hasMoreElements()) { Condition c = (Condition) e.nextElement(); if (c.eval()) { return true; } } return false;