Interface BinaryOperator
-
- All Known Implementing Classes:
BinaryOperatorImpl
public interface BinaryOperator
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BinaryExpression<?>
createInstance()
Associativity
getAssociativity()
int
getPrecedence()
java.lang.String
getSymbol()
BinaryOperatorType
getType()
-
-
-
Method Detail
-
getPrecedence
int getPrecedence()
-
getSymbol
java.lang.String getSymbol()
-
createInstance
BinaryExpression<?> createInstance()
-
getType
BinaryOperatorType getType()
-
getAssociativity
Associativity getAssociativity()
-
-