RelationalOperatorpublic abstract class RelationalOperator extends BinaryOperator This is the superclass for all relational operators (except ==
or !=) |
Methods Summary |
---|
public java.lang.Object | apply(java.lang.Object pLeft, java.lang.Object pRight, java.lang.Object pContext, Logger pLogger)Applies the operator to the given value
return Coercions.applyRelationalOperator (pLeft, pRight, this, pLogger);
| public abstract boolean | apply(double pLeft, double pRight, Logger pLogger)Applies the operator to the given double values
| public abstract boolean | apply(long pLeft, long pRight, Logger pLogger)Applies the operator to the given long values
| public abstract boolean | apply(java.lang.String pLeft, java.lang.String pRight, Logger pLogger)Applies the operator to the given String values
|
|