CollectionOperator
A class used to represent a CollectionContainsAll operator. This class
operates on two Collection
s.
The evaluation of this should return true
if the first Collection
contains the second Collection
, otherwise return false
.
Object
ComplexExpressionImpl
Operator
CollectionOperator
CollectionContainsAll
BinaryOperator
, Cloneable
, Expression
, Serializable
Constructor Summary |
|
|
Method Summary |
public |
|
Methods from com.bea.p13n.expression.operator.collection. |
|
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.operator. |
|
Methods from interface com.bea.p13n.expression. |
|
Constructor Detail |
public CollectionContainsAll()
CollectionContainsAll
object.public CollectionContainsAll(Object
firstCollection,Object
secondCollection)
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.