LogicalOperator
Implementation of the LogicalMultiAnd operator.
This operator allows an array of operands to be
ANDed together. Each operand should either be
a Boolean or an Expression which evaluates to a
Boolean.
Input 1-N: A Boolean (or Expression returning a Boolean).
Returns: A Boolean( IN(1) && IN(2) && IN(3) etc. ).
Object
ComplexExpressionImpl
Operator
LogicalOperator
LogicalMultiAnd
Cloneable
, Expression
, Serializable
Field Summary |
Fields from com.bea.p13n.expression.operator.logical. |
|
Constructor Summary |
|
|
Method Summary |
public |
|
Methods from com.bea.p13n.expression.operator.logical. |
|
Methods from com.bea.p13n.expression.operator. |
|
Methods from com.bea.p13n.expression.internal. |
addListener, addSubExpression, clearCache, clone, createProxyExpression, equals, getCachedValue, getParent, getSource, getSubExpression, getSubExpressionCount, getUserData, hashCode, isCached, isCacheEnabled, isEqualitySubExpression, notifyListeners, removeAllSubExpressions, removeListener, removeSubExpression, removeSubExpression, setCachedValue, setCacheEnabled, setParent, setSource, setSubExpression, setUserData, toString, write |
Methods from class java.lang. |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods from interface com.bea.p13n.expression. |
|
Constructor Detail |
public LogicalMultiAnd()
public LogicalMultiAnd(Object
[] andArray)
Method Detail |
public Class
[] getParameterSignature()
Description copied from Expression.getParameterSignature()
Expression
.
Because the sub-expressions within the Expression
are
typically arguments or operands, some type validation is performed
by examining the class types of the sub-expressions against the
Expression
's parameter signature.