QGIS API Documentation
3.26.3-Buenos Aires (65e4edfdad)
|
Definition of a field domain for field content validated by a glob. More...
#include <qgsfielddomain.h>
Public Member Functions | |
QgsGlobFieldDomain (const QgsGlobFieldDomain &)=delete | |
QgsGlobFieldDomain cannot be copied - use clone() instead. More... | |
QgsGlobFieldDomain (const QString &name, const QString &description, QVariant::Type fieldType, const QString &glob) | |
Constructor for QgsGlobFieldDomain, with the specified name, description and fieldType. More... | |
QgsGlobFieldDomain * | clone () const override |
Clones the field domain. More... | |
QString | glob () const |
Returns the glob expression. More... | |
QgsGlobFieldDomain & | operator= (const QgsGlobFieldDomain &)=delete |
QgsGlobFieldDomain cannot be copied - use clone() instead. More... | |
void | setGlob (const QString &glob) |
Sets the glob expression. More... | |
Qgis::FieldDomainType | type () const override |
Returns the type of field domain. More... | |
QString | typeName () const override |
Returns a translated name of the field domain type. More... | |
Public Member Functions inherited from QgsFieldDomain | |
QgsFieldDomain (const QString &name, const QString &description, QVariant::Type fieldType) | |
Constructor for QgsFieldDomain, with the specified name, description and fieldType. More... | |
virtual | ~QgsFieldDomain () |
QString | description () const |
Returns the description of the field domain. More... | |
QVariant::Type | fieldType () const |
Returns the associated field type. More... | |
Qgis::FieldDomainMergePolicy | mergePolicy () const |
Returns the merge policy. More... | |
QString | name () const |
Returns the name of the field domain. More... | |
void | setDescription (const QString &description) |
Sets the description of the field domain. More... | |
void | setFieldType (QVariant::Type type) |
Sets the associated field type. More... | |
void | setMergePolicy (Qgis::FieldDomainMergePolicy policy) |
Sets the merge policy. More... | |
void | setName (const QString &name) |
Sets the name of the field domain. More... | |
void | setSplitPolicy (Qgis::FieldDomainSplitPolicy policy) |
Sets the split policy. More... | |
Qgis::FieldDomainSplitPolicy | splitPolicy () const |
Returns the split policy. More... | |
Additional Inherited Members | |
Protected Attributes inherited from QgsFieldDomain | |
QString | mDescription |
QVariant::Type | mFieldType = QVariant::Type::String |
Qgis::FieldDomainMergePolicy | mMergePolicy = Qgis::FieldDomainMergePolicy::DefaultValue |
QString | mName |
Qgis::FieldDomainSplitPolicy | mSplitPolicy = Qgis::FieldDomainSplitPolicy::DefaultValue |
Definition of a field domain for field content validated by a glob.
Globs are matching expression like "*[a-z][0-1]?"
Definition at line 422 of file qgsfielddomain.h.
QgsGlobFieldDomain::QgsGlobFieldDomain | ( | const QString & | name, |
const QString & | description, | ||
QVariant::Type | fieldType, | ||
const QString & | glob | ||
) |
Constructor for QgsGlobFieldDomain, with the specified name, description and fieldType.
The glob argument specifies the content validation glob, e.g. "*[a-z][0-1]?".
Definition at line 112 of file qgsfielddomain.cpp.
|
delete |
QgsGlobFieldDomain cannot be copied - use clone() instead.
|
overridevirtual |
Clones the field domain.
Implements QgsFieldDomain.
Definition at line 129 of file qgsfielddomain.cpp.
|
inline |
Returns the glob expression.
Globs are matching expression like "*[a-z][0-1]?"
Definition at line 455 of file qgsfielddomain.h.
|
delete |
QgsGlobFieldDomain cannot be copied - use clone() instead.
|
inline |
Sets the glob expression.
Globs are matching expression like "*[a-z][0-1]?"
Definition at line 464 of file qgsfielddomain.h.
|
overridevirtual |
Returns the type of field domain.
Implements QgsFieldDomain.
Definition at line 119 of file qgsfielddomain.cpp.
|
overridevirtual |
Returns a translated name of the field domain type.
Implements QgsFieldDomain.
Definition at line 124 of file qgsfielddomain.cpp.