infix2postfix
Class UnaryFunctionOperator

java.lang.Object
  extended byinfix2postfix.Operator
      extended byinfix2postfix.UnaryOperator
          extended byinfix2postfix.UnaryFunctionOperator
All Implemented Interfaces:
FunctionOperator

public abstract class UnaryFunctionOperator
extends UnaryOperator
implements FunctionOperator

This class represents unary function operator like java.lang.Math#sin (double).

Author:
Maulin H. Vasavada

Field Summary
 
Fields inherited from class infix2postfix.Operator
priority, symbol
 
Constructor Summary
UnaryFunctionOperator(java.lang.String symbol, int priority)
          Constructor
 
Methods inherited from class infix2postfix.UnaryOperator
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

UnaryFunctionOperator

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