QXmlStreamEntityDeclaration#

The QXmlStreamEntityDeclaration class represents a DTD entity declaration. More

Inheritance diagram of PySide6.QtCore.QXmlStreamEntityDeclaration

Synopsis#

Functions#

Detailed Description#

An entity declaration consists of a name() , a notationName() , a systemId() , a publicId() , and a value() .

class PySide6.QtCore.QXmlStreamEntityDeclaration#

PySide6.QtCore.QXmlStreamEntityDeclaration(QXmlStreamEntityDeclaration)

Parameters

QXmlStreamEntityDeclarationPySide6.QtCore.QXmlStreamEntityDeclaration

Creates an empty entity declaration.

PySide6.QtCore.QXmlStreamEntityDeclaration.name()#
Return type

QStringView

Returns the entity name.

PySide6.QtCore.QXmlStreamEntityDeclaration.notationName()#
Return type

QStringView

Returns the notation name.

PySide6.QtCore.QXmlStreamEntityDeclaration.__ne__(other)#
Parameters

otherPySide6.QtCore.QXmlStreamEntityDeclaration

Return type

bool

Compares this entity declaration with other and returns true if they are not equal; otherwise returns false.

PySide6.QtCore.QXmlStreamEntityDeclaration.__eq__(other)#
Parameters

otherPySide6.QtCore.QXmlStreamEntityDeclaration

Return type

bool

Compares this entity declaration with other and returns true if they are equal; otherwise returns false.

PySide6.QtCore.QXmlStreamEntityDeclaration.publicId()#
Return type

QStringView

Returns the public identifier.

PySide6.QtCore.QXmlStreamEntityDeclaration.systemId()#
Return type

QStringView

Returns the system identifier.

PySide6.QtCore.QXmlStreamEntityDeclaration.value()#
Return type

QStringView

Returns the entity’s value.