|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.jbpm.jpdl.el.impl.BinaryOperator
org.jbpm.jpdl.el.impl.RelationalOperator
public abstract class RelationalOperator
This is the superclass for all relational operators (except == or !=)
Constructor Summary | |
---|---|
RelationalOperator()
|
Method Summary | |
---|---|
abstract boolean |
apply(java.math.BigDecimal pLeft,
java.math.BigDecimal pRight)
Applies the operator to the given BigDecimal values, returning a BigDecimal |
abstract boolean |
apply(java.math.BigInteger pLeft,
java.math.BigInteger pRight)
Applies the operator to the given BigDecimal values, returning a BigDecimal |
abstract boolean |
apply(double pLeft,
double pRight)
Applies the operator to the given double values |
abstract boolean |
apply(long pLeft,
long pRight)
Applies the operator to the given long values |
java.lang.Object |
apply(java.lang.Object pLeft,
java.lang.Object pRight,
Logger pLogger)
Applies the operator to the given value |
abstract boolean |
apply(java.lang.String pLeft,
java.lang.String pRight)
Applies the operator to the given String values |
protected boolean |
isEqual(int val)
Test return value of BigInteger/BigDecimal A.compareTo(B). |
protected boolean |
isGreater(int val)
Test return value of BigInteger/BigDecimal A.compareTo(B). |
protected boolean |
isLess(int val)
Test return value of BigInteger/BigDecimal A.compareTo(B). |
Methods inherited from class org.jbpm.jpdl.el.impl.BinaryOperator |
---|
getOperatorSymbol, shouldCoerceToBoolean, shouldEvaluate |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public RelationalOperator()
Method Detail |
---|
public java.lang.Object apply(java.lang.Object pLeft, java.lang.Object pRight, Logger pLogger) throws ELException
apply
in class BinaryOperator
ELException
public abstract boolean apply(double pLeft, double pRight)
public abstract boolean apply(long pLeft, long pRight)
public abstract boolean apply(java.lang.String pLeft, java.lang.String pRight)
public abstract boolean apply(java.math.BigDecimal pLeft, java.math.BigDecimal pRight)
public abstract boolean apply(java.math.BigInteger pLeft, java.math.BigInteger pRight)
protected boolean isLess(int val)
val
- - result of BigInteger/BigDecimal compareTo() call
protected boolean isEqual(int val)
val
- - result of BigInteger/BigDecimal compareTo() call
protected boolean isGreater(int val)
val
- - result of BigInteger/BigDecimal compareTo() call
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |