Basic Constructor.
Creates a new OrQueryExp with the specified ValueExps exp1 = q1; exp2 = q2;
exp1 = q1; exp2 = q2;
Applies the OrQueryExp on a MBean.paramname The name of the MBean on which the OrQueryExp will be applied.returnTrue if the query was successfully applied to the MBean, false otherwise.exceptionBadStringOperationException The string passed to the method is invalid.exceptionBadBinaryOpValueExpException The expression passed to the method is invalid.exceptionBadAttributeValueExpException The attribute value passed to the method is invalid. return exp1.apply(name) || exp2.apply(name);
return exp1.apply(name) || exp2.apply(name);
Returns the left query expression. return exp1;
return exp1;
Returns the right query expression. return exp2;
return exp2;
Returns a string representation of this AndQueryExp return "(" + exp1 + ") or (" + exp2 + ")";
return "(" + exp1 + ") or (" + exp2 + ")";