BinaryComparisonOp(const char *opName=0)
It initializes a new BinaryComparisonOp.
void setName(const char *opName)
It sets the operator name.
virtual ~BinaryComparisonOp()
Virtual destructor.
void enableMatchCase()
It enables the match case flag. So comparisons will be case sensitive.
void setSecond(Expression *second)
It sets the second operand.
void disableMatchCase()
It disables the match case flag. So comparisons will not be case sensitive.
A comparison operator is used to form expressions that evaluate the mathematical comparison between t...
An static class with global definitions.
void setFirst(Expression *first)
It sets the first operand.
Expression * m_first
first operand (mandatory).
ComparisonOp * clone() const
It creates a new copy of this object.
bool m_matchCase
Optional (default: true).
virtual Expression * clone() const =0
It returns a clone of this object.
This is an abstract class that models a Filter Encoding expression.
Expression * getSecond() const
It returns the second operand.
This is an abstract class that models a Filter Encoding expression.
A class for binary comparison operators.
Expression * m_second
second operand (mandatory).
A class for binary comparison operators.
Expression * getFirst() const
It returns the first operand.
const char * m_name
Operator name.