public abstract class BinaryOperator
extends java.lang.Object
This is the superclass for all binary operators
| Constructor and Description |
|---|
BinaryOperator()
Constructor
|
| Modifier and Type | Method and Description |
|---|---|
abstract java.lang.Object |
apply(java.lang.Object pLeft,
java.lang.Object pRight,
java.lang.Object pContext,
Logger pLogger)
Applies the operator to the given pair of values
|
abstract java.lang.String |
getOperatorSymbol()
Returns the symbol representing the operator
|
boolean |
shouldCoerceToBoolean()
Returns true if the operator expects its arguments to be coerced
to Booleans.
|
boolean |
shouldEvaluate(java.lang.Object pLeft)
Returns true if evaluation is necessary given the specified Left
value.
|
public abstract java.lang.String getOperatorSymbol()
public abstract java.lang.Object apply(java.lang.Object pLeft,
java.lang.Object pRight,
java.lang.Object pContext,
Logger pLogger)
throws ELException
ELExceptionpublic boolean shouldEvaluate(java.lang.Object pLeft)
public boolean shouldCoerceToBoolean()
Copyright (c) 1999-2012 Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.