| 
    QGIS API Documentation
    2.18.21-Las Palmas (9fba24a)
    
   | 
 
Binary logical/arithmetical operator (AND, OR, =, +, ...) More...
#include <qgssqlstatement.h>

Public Member Functions | |
| NodeBinaryOperator (BinaryOperator op, Node *opLeft, Node *opRight) | |
| Constructor.  More... | |
| ~NodeBinaryOperator () | |
| virtual void | accept (Visitor &v) const override | 
| Support the visitor pattern.  More... | |
| virtual Node * | clone () const override | 
| Generate a clone of this node.  More... | |
| virtual QString | dump () const override | 
| Abstract virtual dump method.  More... | |
| bool | leftAssociative () const | 
| Is left associative ?  More... | |
| virtual NodeType | nodeType () const override | 
| Abstract virtual that returns the type of this node.  More... | |
| BinaryOperator | op () const | 
| Operator.  More... | |
| Node * | opLeft () const | 
| Left operand.  More... | |
| Node * | opRight () const | 
| Right operand.  More... | |
| int | precedence () const | 
| Precedence.  More... | |
  Public Member Functions inherited from QgsSQLStatement::Node | |
| virtual | ~Node () | 
Protected Attributes | |
| BinaryOperator | mOp | 
| Node * | mOpLeft | 
| Node * | mOpRight | 
Binary logical/arithmetical operator (AND, OR, =, +, ...)
Definition at line 301 of file qgssqlstatement.h.
      
  | 
  inline | 
Constructor.
Definition at line 305 of file qgssqlstatement.h.
      
  | 
  inline | 
Definition at line 306 of file qgssqlstatement.h.
      
  | 
  inlineoverridevirtual | 
Support the visitor pattern.
For any implementation this should look like
C++:
v.visit( *this );
Python:
v.visit( self)
| v | A visitor that visits this node. | 
Implements QgsSQLStatement::Node.
Definition at line 320 of file qgssqlstatement.h.
      
  | 
  overridevirtual | 
Generate a clone of this node.
Make sure that the clone does not contain any information which is generated in prepare and context related. Ownership is transferred to the caller.
Implements QgsSQLStatement::Node.
Definition at line 400 of file qgssqlstatement.cpp.
      
  | 
  overridevirtual | 
Abstract virtual dump method.
Implements QgsSQLStatement::Node.
Definition at line 369 of file qgssqlstatement.cpp.
| bool QgsSQLStatement::NodeBinaryOperator::leftAssociative | ( | ) | const | 
Is left associative ?
Definition at line 334 of file qgssqlstatement.cpp.
      
  | 
  inlineoverridevirtual | 
Abstract virtual that returns the type of this node.
Implements QgsSQLStatement::Node.
Definition at line 317 of file qgssqlstatement.h.
      
  | 
  inline | 
Operator.
Definition at line 309 of file qgssqlstatement.h.
      
  | 
  inline | 
Left operand.
Definition at line 312 of file qgssqlstatement.h.
      
  | 
  inline | 
Right operand.
Definition at line 315 of file qgssqlstatement.h.
| int QgsSQLStatement::NodeBinaryOperator::precedence | ( | ) | const | 
Precedence.
Definition at line 289 of file qgssqlstatement.cpp.
      
  | 
  protected | 
Definition at line 331 of file qgssqlstatement.h.
      
  | 
  protected | 
Definition at line 332 of file qgssqlstatement.h.
      
  | 
  protected | 
Definition at line 333 of file qgssqlstatement.h.
 1.8.13