Class RelationalOperator

    • Method Summary

      All Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      abstract boolean apply​(double pLeft, double pRight, Logger pLogger)
      Applies the operator to the given double values
      abstract boolean apply​(long pLeft, long pRight, Logger pLogger)
      Applies the operator to the given long values
      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
      abstract boolean apply​(java.lang.String pLeft, java.lang.String pRight, Logger pLogger)
      Applies the operator to the given String values
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • RelationalOperator

        public RelationalOperator()
    • Method Detail

      • apply

        public java.lang.Object apply​(java.lang.Object pLeft,
                                      java.lang.Object pRight,
                                      java.lang.Object pContext,
                                      Logger pLogger)
                               throws ELException
        Applies the operator to the given value
        Specified by:
        apply in class BinaryOperator
        Throws:
        ELException
      • apply

        public abstract boolean apply​(double pLeft,
                                      double pRight,
                                      Logger pLogger)
        Applies the operator to the given double values
      • apply

        public abstract boolean apply​(long pLeft,
                                      long pRight,
                                      Logger pLogger)
        Applies the operator to the given long values
      • apply

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