QGIS API Documentation
3.20.0-Odense (decaadbb31)
|
Represents a single parameter passed to a function. More...
#include <qgsexpressionfunction.h>
Public Member Functions | |
Parameter (const QString &name, bool optional=false, const QVariant &defaultValue=QVariant(), bool isSubExpression=false) | |
Constructor for Parameter. More... | |
QVariant | defaultValue () const |
Returns the default value for the parameter. More... | |
bool | isSubExpression () const |
Returns true if parameter argument is a separate sub-expression, and should not be checked while determining referenced columns for the expression. More... | |
QString | name () const |
Returns the name of the parameter. More... | |
bool | operator== (const QgsExpressionFunction::Parameter &other) const |
bool | optional () const |
Returns true if the parameter is optional. More... | |
Represents a single parameter passed to a function.
Definition at line 54 of file qgsexpressionfunction.h.
|
inline |
Constructor for Parameter.
name | parameter name, used when named parameter are specified in an expression |
optional | set to true if parameter should be optional |
defaultValue | default value to use for optional parameters |
isSubExpression | set to true if this parameter is a sub-expression |
Definition at line 65 of file qgsexpressionfunction.h.
|
inline |
Returns the default value for the parameter.
Definition at line 82 of file qgsexpressionfunction.h.
|
inline |
Returns true
if parameter argument is a separate sub-expression, and should not be checked while determining referenced columns for the expression.
Definition at line 89 of file qgsexpressionfunction.h.
|
inline |
Returns the name of the parameter.
Definition at line 76 of file qgsexpressionfunction.h.
|
inline |
Definition at line 91 of file qgsexpressionfunction.h.
|
inline |
Returns true
if the parameter is optional.
Definition at line 79 of file qgsexpressionfunction.h.