Returns length of string (String formatting functions). More...
#include <StringLength.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. | |
virtual Expression * | clone () const =0 |
It returns a clone of this object. More... | |
Initializer Methods | |
ParameterValue * | m_stringValue |
Mandatory. More... | |
StringLength () | |
It initializes a new StringLength. More... | |
~StringLength () | |
Destructor. More... | |
void | setStringValue (ParameterValue *v) |
Initializer Methods | |
void | setFallbackValue (const std::string &v) |
const std::string & | getFallbackValue () const |
std::string | m_fallbackValue |
The value of the fallbackValue attribute is used as a default value, if the SE implementation does not support the function. If the implementation supports the function, then the result value is determined by executing the function. (Mandatory) More... | |
Returns length of string (String formatting functions).
The function returns the number of characters in a string. The argument is converted to a string before computing its length.
Definition at line 52 of file StringLength.h.
|
inherited |
Definition at line 58 of file BaseVisitable.h.
|
inherited |
Definition at line 57 of file BaseVisitable.h.
te::se::StringLength::StringLength | ( | ) |
It initializes a new StringLength.
te::se::StringLength::~StringLength | ( | ) |
Destructor.
|
pure virtualinherited |
It call the visit method from the guest object.
guest | The guest or visitor. |
|
pure virtualinherited |
It returns a clone of this object.
Implemented in te::se::Recode, te::se::MapItem, te::se::InterpolationPoint, te::se::Interpolate, te::se::Categorize, te::fe::PropertyName, te::fe::Literal, te::fe::Function, and te::fe::BinaryOperator.
|
inherited |
|
inherited |
void te::se::StringLength::setStringValue | ( | ParameterValue * | v | ) |
|
protectedinherited |
The value of the fallbackValue attribute is used as a default value, if the SE implementation does not support the function. If the implementation supports the function, then the result value is determined by executing the function. (Mandatory)
Definition at line 88 of file Function.h.
|
private |
Mandatory.
Definition at line 73 of file StringLength.h.