QXmlStreamEntityDeclaration¶

The QXmlStreamEntityDeclaration class represents a DTD entity declaration. More…

Inheritance diagram of PySide2.QtCore.QXmlStreamEntityDeclaration

Synopsis¶

Functions¶

Detailed Description¶

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

class PySide2.QtCore.QXmlStreamEntityDeclaration¶

PySide2.QtCore.QXmlStreamEntityDeclaration(arg__1)

param arg__1:

PySide2.QtCore.QXmlStreamEntityDeclaration

Creates an empty entity declaration.

PySide2.QtCore.QXmlStreamEntityDeclaration.name()¶
Return type:

QStringRef

Returns the entity name.

PySide2.QtCore.QXmlStreamEntityDeclaration.notationName()¶
Return type:

QStringRef

Returns the notation name.

PySide2.QtCore.QXmlStreamEntityDeclaration.__ne__(other)¶
Parameters:

other – PySide2.QtCore.QXmlStreamEntityDeclaration

Return type:

bool

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

PySide2.QtCore.QXmlStreamEntityDeclaration.__eq__(other)¶
Parameters:

other – PySide2.QtCore.QXmlStreamEntityDeclaration

Return type:

bool

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

PySide2.QtCore.QXmlStreamEntityDeclaration.publicId()¶
Return type:

QStringRef

Returns the public identifier.

PySide2.QtCore.QXmlStreamEntityDeclaration.systemId()¶
Return type:

QStringRef

Returns the system identifier.

PySide2.QtCore.QXmlStreamEntityDeclaration.value()¶
Return type:

QStringRef

Returns the entity’s value.