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 EAssociativity
getAssociativity()
int
getPrecedence()
EOperatorType
getType()
-
Methods inherited from interface de.xima.fc.workflow.parser.infix.ISymbol
getCanonicalRepresentation, getRepresentations
-
-
-
-
Method Detail
-
getAssociativity
EAssociativity getAssociativity()
- Returns:
- The
EAssociativity
of 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.
-
-