FileDocCategorySizeDatePackage
RelationalOperator.javaAPI DocGlassfish v2 API3373Sat May 05 19:17:28 BST 2007org.apache.taglibs.standard.lang.jstl

RelationalOperator

public abstract class RelationalOperator extends BinaryOperator

This is the superclass for all relational operators (except == or !=)

author
Nathan Abramson - Art Technology Group
version
$Change: 181177 $$DateTime: 2001/06/26 08:45:09 $$Author: tcfujii $

Fields Summary
Constructors Summary
Methods Summary
public java.lang.Objectapply(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 booleanapply(double pLeft, double pRight, Logger pLogger)
Applies the operator to the given double values

public abstract booleanapply(long pLeft, long pRight, Logger pLogger)
Applies the operator to the given long values

public abstract booleanapply(java.lang.String pLeft, java.lang.String pRight, Logger pLogger)
Applies the operator to the given String values