infix2postfix
Class BinaryFunctionOperator

java.lang.Object
  extended byinfix2postfix.Operator
      extended byinfix2postfix.BinaryOperator
          extended byinfix2postfix.BinaryFunctionOperator
All Implemented Interfaces:
FunctionOperator

public abstract class BinaryFunctionOperator
extends BinaryOperator
implements FunctionOperator

This class represents binary function operator like java.lang.Math#max (int,int).

Author:
Maulin H. Vasavada

Field Summary
 
Fields inherited from class infix2postfix.Operator
priority, symbol
 
Constructor Summary
BinaryFunctionOperator(java.lang.String symbol, int priority)
          Constructor
 
Methods inherited from class infix2postfix.BinaryOperator
applyOperator
 
Methods inherited from class infix2postfix.Operator
equals, getPriority, getSymbol, hashCode
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

BinaryFunctionOperator

public BinaryFunctionOperator(java.lang.String symbol,
                              int priority)
Constructor