Class:ArithmeticFactor - Superclass: Node Node
⌊ ArithmeticFactor
public class ArithmeticFactor
extends Node
www.doctrine-project.org
Field Summary | |
---|---|
ArithmeticPrimary | |
null|boolean NULL represents no sign, TRUE means positive and FALSE means negative sign |
Constructor Summary | |
---|---|
ArithmeticFactor(mixed arithmeticPrimary, mixed sign) |
Method Summary | |
---|---|
void | dispatch(mixed sqlWalker, mixed walker, $walker ) Double-dispatch method, supposed to dispatch back to the walker. |
void | |
void |
Methods inherited from Doctrine\ORM\Query\AST\Node | |
---|---|
dispatch, dump |
public ArithmeticPrimary $arithmeticPrimary
public null|boolean NULL represents no sign, TRUE means positive and FALSE means negative sign $sign
public ArithmeticFactor(mixed arithmeticPrimary, mixed sign)
public void dispatch(mixed sqlWalker, mixed walker, $walker )
Double-dispatch method, supposed to dispatch back to the walker.
Implementation is not mandatory for all nodes.
public void isNegativeSigned()
public void isPositiveSigned()
ArithmeticFactor ::= [("+" | "-")] ArithmeticPrimary