public interface OperatorFactory
Each operator implementation should provide a single-instance factory to the parser.
OperatorFactory implementations are provided for the most common operators in
the org.colomoto.mddlib.logicalfunction.operators package.
| Modifier and Type | Method and Description |
|---|---|
FunctionNode |
getNode(Stack<FunctionNode> stack)
Build a node representing this operator applied to the current parsing stack.
|
int |
getPriority()
Get the priority level of a given operator.
|
String |
getSymbol()
Get the symbol for this operator.
|
String getSymbol()
int getPriority()
FunctionNode getNode(Stack<FunctionNode> stack)
stack - current parsing stackCopyright © 2009–2020. All rights reserved.