Class:LikeExpression - Superclass: Node Node
⌊ LikeExpression
public class LikeExpression
extends Node
www.doctrine-project.org
Field Summary | |
---|---|
mixed | |
mixed | |
mixed | |
mixed |
Constructor Summary | |
---|---|
LikeExpression(mixed stringExpression, mixed stringPattern, mixed escapeChar) |
Method Summary | |
---|---|
void | dispatch(mixed sqlWalker, mixed walker, $walker ) Double-dispatch method, supposed to dispatch back to the walker. |
Methods inherited from Doctrine\ORM\Query\AST\Node | |
---|---|
dispatch, dump |
public mixed $escapeChar
public mixed $not
public mixed $stringExpression
public mixed $stringPattern
public LikeExpression(mixed stringExpression, mixed stringPattern, mixed escapeChar)
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.
LikeExpression ::= StringExpression ["NOT"] "LIKE" string ["ESCAPE" char]