It models the inequality operator less than or equal to (<=). More...
#include <PropertyIsLessThanOrEqualTo.h>
Public Types | |
| typedef void | ReturnType |
| typedef Visitor | VisitorType |
Public Member Functions | |
| virtual ReturnType | accept (VisitorType &guest) const =0 |
| It call the visit method from the guest object. More... | |
Initializer Methods | |
Methods related to instantiation and destruction. | |
| PropertyIsLessThanOrEqualTo (Expression *arg1, Expression *arg2) | |
| Constructor. More... | |
| ~PropertyIsLessThanOrEqualTo () | |
| Destructor. More... | |
Accessor methods | |
Methods used to get or set properties. | |
| void | setFirst (Expression *first) |
| It sets the first operand. More... | |
| Expression * | getFirst () const |
| It returns the first operand. More... | |
| void | setSecond (Expression *second) |
| It sets the second operand. More... | |
| Expression * | getSecond () const |
| It returns the second operand. More... | |
| void | enableMatchCase () |
| It enables the match case flag. So comparisons will be case sensitive. More... | |
| void | disableMatchCase () |
| It disables the match case flag. So comparisons will not be case sensitive. More... | |
| ComparisonOp * | clone () const |
| It creates a new copy of this object. More... | |
Accessor methods | |
Methods used to get or set properties. | |
| const char * | getName () const |
| It returns the operator name. More... | |
| void | setName (const char *opName) |
| It sets the operator name. More... | |
Protected Attributes | |
| Expression * | m_first |
| first operand (mandatory). More... | |
| bool | m_matchCase |
| Optional (default: true). More... | |
| const char * | m_name |
| Operator name. More... | |
| Expression * | m_second |
| second operand (mandatory). More... | |
It models the inequality operator less than or equal to (<=).
Definition at line 46 of file PropertyIsLessThanOrEqualTo.h.
|
inherited |
Definition at line 58 of file BaseVisitable.h.
|
inherited |
Definition at line 57 of file BaseVisitable.h.
|
inline |
Constructor.
| arg1 | The first argument. |
| arg2 | The second argument. |
Definition at line 65 of file PropertyIsLessThanOrEqualTo.h.
|
inline |
Destructor.
Definition at line 68 of file PropertyIsLessThanOrEqualTo.h.
|
pure virtualinherited |
It call the visit method from the guest object.
| guest | The guest or visitor. |
|
virtualinherited |
It creates a new copy of this object.
Implements te::fe::AbstractOp.
Definition at line 90 of file BinaryComparisonOp.cpp.
References te::fe::BinaryComparisonOp::BinaryComparisonOp(), te::fe::Expression::clone(), te::fe::BinaryComparisonOp::disableMatchCase(), te::fe::BinaryComparisonOp::enableMatchCase(), te::fe::BinaryComparisonOp::m_first, te::fe::BinaryComparisonOp::m_matchCase, te::fe::AbstractOp::m_name, te::fe::BinaryComparisonOp::m_second, te::fe::BinaryComparisonOp::setFirst(), te::fe::AbstractOp::setName(), and te::fe::BinaryComparisonOp::setSecond().
|
inherited |
It disables the match case flag. So comparisons will not be case sensitive.
Definition at line 85 of file BinaryComparisonOp.cpp.
References te::fe::BinaryComparisonOp::m_matchCase.
Referenced by te::fe::BinaryComparisonOp::clone().
|
inherited |
It enables the match case flag. So comparisons will be case sensitive.
Definition at line 80 of file BinaryComparisonOp.cpp.
References te::fe::BinaryComparisonOp::m_matchCase.
Referenced by te::fe::BinaryComparisonOp::clone().
|
inherited |
It returns the first operand.
Definition at line 64 of file BinaryComparisonOp.cpp.
References te::fe::BinaryComparisonOp::m_first.
Referenced by BinaryComparsionOpWriter(), and te::map::QueryEncoder::visit().
|
inlineinherited |
It returns the operator name.
Definition at line 82 of file AbstractOp.h.
Referenced by GetQualifiedName(), te::map::QueryEncoder::visit(), and te::fe::serialize::AbstractOp::write().
|
inherited |
It returns the second operand.
Definition at line 75 of file BinaryComparisonOp.cpp.
References te::fe::BinaryComparisonOp::m_second.
Referenced by BinaryComparsionOpWriter(), te::fe::GetFilterStepValues(), te::fe::GetFilterUniqueValue(), and te::map::QueryEncoder::visit().
|
inherited |
It sets the first operand.
| first | The first operand. |
Definition at line 58 of file BinaryComparisonOp.cpp.
References te::fe::BinaryComparisonOp::m_first.
Referenced by te::fe::BinaryComparisonOp::clone().
|
inlineinherited |
It sets the operator name.
| opName | The operator name. |
Definition at line 89 of file AbstractOp.h.
Referenced by te::fe::ComparisonOp::clone(), te::fe::SpatialOp::clone(), te::fe::LogicOp::clone(), te::fe::PropertyIsNull::clone(), te::fe::UnaryLogicOp::clone(), te::fe::PropertyIsBetween::clone(), te::fe::BinaryLogicOp::clone(), te::fe::DistanceBuffer::clone(), te::fe::BinaryComparisonOp::clone(), and te::fe::BinarySpatialOp::clone().
|
inherited |
It sets the second operand.
| second | The second operand. |
Definition at line 69 of file BinaryComparisonOp.cpp.
References te::fe::BinaryComparisonOp::m_second.
Referenced by te::fe::BinaryComparisonOp::clone().
|
protectedinherited |
first operand (mandatory).
Definition at line 159 of file BinaryComparisonOp.h.
Referenced by te::fe::BinaryComparisonOp::clone(), te::fe::BinaryComparisonOp::getFirst(), te::fe::BinaryComparisonOp::setFirst(), and te::fe::BinaryComparisonOp::~BinaryComparisonOp().
|
protectedinherited |
Optional (default: true).
Definition at line 161 of file BinaryComparisonOp.h.
Referenced by te::fe::BinaryComparisonOp::clone(), te::fe::BinaryComparisonOp::disableMatchCase(), and te::fe::BinaryComparisonOp::enableMatchCase().
|
protectedinherited |
Operator name.
Definition at line 123 of file AbstractOp.h.
Referenced by te::fe::ComparisonOp::clone(), te::fe::SpatialOp::clone(), te::fe::LogicOp::clone(), te::fe::PropertyIsNull::clone(), te::fe::UnaryLogicOp::clone(), te::fe::PropertyIsBetween::clone(), te::fe::BinaryLogicOp::clone(), te::fe::DistanceBuffer::clone(), te::fe::BinaryComparisonOp::clone(), and te::fe::BinarySpatialOp::clone().
|
protectedinherited |
second operand (mandatory).
Definition at line 160 of file BinaryComparisonOp.h.
Referenced by te::fe::BinaryComparisonOp::clone(), te::fe::BinaryComparisonOp::getSecond(), te::fe::BinaryComparisonOp::setSecond(), and te::fe::BinaryComparisonOp::~BinaryComparisonOp().