File Information
Library: FastInfoset
Package: FastInfoset
Header: Poco/FastInfoset/QualifiedNameVocabulary.h
Description
A QualifiedNameEntry represents a XML qualified name.
Member Summary
Member Functions: localNameId, namespaceId, operator !=, operator <, operator ==, prefixId
Constructors
QualifiedNameEntry
Creates an empty QualifiedNameEntry
QualifiedNameEntry
QualifiedNameEntry(
Poco::UInt32 prefixId,
Poco::UInt32 namespaceId,
Poco::UInt32 localNameId
);
Creates the QualifiedNameEntry
Destructor
~QualifiedNameEntry
Destroys the QualifiedNameEntry
Member Functions
localNameId
Poco::UInt32 localNameId() const;
Returns the id of the localName. The id presents an index into a vocabulary. To convert the id back to the string representation, simply call vocabulary.value(index). Note that it depends on the location of the entry in the FISDocument which vocabulary will be used.
namespaceId
Poco::UInt32 namespaceId() const;
Returns the id of the namespace. The id presents an index into a vocabulary. To convert the id back to the string representation, simply call vocabulary.value(index). Note that it depends on the location of the entry in the FISDocument which vocabulary will be used.
operator !=
bool operator != (
const QualifiedNameEntry & other
) const;
Compares two entries for unequality.
operator <
bool operator < (
const QualifiedNameEntry & other
) const;
Compares two entries by lower than.
operator ==
bool operator == (
const QualifiedNameEntry & other
) const;
Compares two entries for equality.
prefixId
Poco::UInt32 prefixId() const;
Returns the id of the prefix. The id presents an index into a vocabulary. To convert the id back to the string representation, simply call vocabulary.value(index). Note that it depends on the location of the entry in the FISDocument which vocabulary will be used.