The QXmlStreamAttribute class represents a single XML attribute. More...
Header: | #include <QXmlStreamAttribute> |
CMake: | find_package(Qt6 COMPONENTS Core REQUIRED) target_link_libraries(mytarget PRIVATE Qt6::Core) |
qmake: | QT += core |
Note: All functions in this class are reentrant.
QXmlStreamAttribute(const QString &namespaceUri, const QString &name, const QString &value) | |
QXmlStreamAttribute(const QString &qualifiedName, const QString &value) | |
QXmlStreamAttribute() | |
bool | isDefault() const |
QStringView | name() const |
QStringView | namespaceUri() const |
QStringView | prefix() const |
QStringView | qualifiedName() const |
QStringView | value() const |
bool | operator!=(const QXmlStreamAttribute &other) const |
bool | operator==(const QXmlStreamAttribute &other) const |
An attribute consists of an optionally empty namespaceUri(), a name(), a value(), and an isDefault() attribute.
The raw XML attribute name is returned as qualifiedName().
Constructs an attribute in the namespace described with namespaceUri with name and value value.
Constructs an attribute with qualified name qualifiedName and value value.
Creates an empty attribute.
Returns true
if the parser added this attribute with a default value following an ATTLIST declaration in the DTD; otherwise returns false
.
Returns the attribute's local name.
Returns the attribute's resolved namespaceUri, or an empty string reference if the attribute does not have a defined namespace.
Returns the attribute's namespace prefix.
See also name() and qualifiedName().
Returns the attribute's qualified name.
A qualified name is the raw name of an attribute in the XML data. It consists of the namespace prefix(), followed by colon, followed by the attribute's local name(). Since the namespace prefix is not unique (the same prefix can point to different namespaces and different prefixes can point to the same namespace), you shouldn't use qualifiedName(), but the resolved namespaceUri() and the attribute's local name().
Returns the attribute's value.
Compares this attribute with other and returns true
if they are not equal; otherwise returns false
.
Compares this attribute with other and returns true
if they are equal; otherwise returns false
.
© The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
https://doc.qt.io/qt-6.2/qxmlstreamattribute.html