Uses of Class
org.hawk.ds.Element

Packages that use Element
org.hawk.ds   
 

Uses of Element in org.hawk.ds
 

Methods in org.hawk.ds that return Element
 Element BinaryTree.Node.getData()
           
static Element Element.getElement(int pos)
           
 

Methods in org.hawk.ds that return types with arguments of type Element
 java.util.List<Element> Expression.getExpression()
           
static java.util.List<Element> Element.parseElements(java.lang.String equation)
          This parses input equation into list of Element
static java.util.List<Element> Element.reverse(java.util.List<Element> list)
          This returns the input list of elements .
 java.util.List<Element> Expression.toPostfix()
          This returns the the POSTFIX form of the input expression.
 java.util.List<Element> Expression.toPrefix()
          This converts the input expression into PREFIX format.
 

Methods in org.hawk.ds with parameters of type Element
static IScript HawkCalculator.calculate(IScript leftElement, IScript rightElement, Element operatorElement)
          This operates on two input variable.
 boolean Element.hasHigherPrecedence(Element otherOpr)
           
 boolean Element.isLeft(Element herElement)
          This checks if the element's position left to the other element
 boolean Element.isRight(Element herElement)
          This checks if the element's position right to the other element
 void BinaryTree.Node.setData(Element data)
           
 

Method parameters in org.hawk.ds with type arguments of type Element
static java.util.List<Element> Element.reverse(java.util.List<Element> list)
          This returns the input list of elements .
 void Expression.setExpression(java.util.List<Element> expression)
           
 

Constructors in org.hawk.ds with parameters of type Element
BinaryTree.Node(Element data)
           
 

Constructor parameters in org.hawk.ds with type arguments of type Element
Expression(java.util.List<Element> elements)
          CTOR considering the type as well.