Package de.xima.fc.workflow.parser.infix
Interface IOperator
- 
- All Superinterfaces:
 ISymbol,Serializable
public interface IOperator extends ISymbol
Details of an operator used in an infix expression.- Since:
 - 7.0.0
 - Author:
 - XIMA MEDIA GmbH
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EAssociativitygetAssociativity()intgetPrecedence()EOperatorTypegetType()- 
Methods inherited from interface de.xima.fc.workflow.parser.infix.ISymbol
getCanonicalRepresentation, getRepresentations 
 - 
 
 - 
 
- 
- 
Method Detail
- 
getAssociativity
EAssociativity getAssociativity()
- Returns:
 - The 
EAssociativityof this operator, i.e. whether it is left or right associative. 
 
- 
getPrecedence
int getPrecedence()
- Returns:
 - The precedence of this operator. Operators with a higher precedence take precedence before operators with a lower precedence.
 
 
- 
getType
EOperatorType getType()
- Returns:
 - The type of this operator, whether it can be used as a prefix, infix, or postfix operator.
 
 
 - 
 
 -