Class ParseXmlHandlerImpl<T>

A ParseXmlHandler implementation that follows XmlRules, building an object of the parameterized type.

Type Parameters

  • T

Implements

Constructors

Methods

  • Provides a raw substring as a cdata node. This text is not expected to be decoded.

    Parameters

    • str: string

    Returns void

  • A document has completed parsing, the final object is ready.

    Returns T

  • Invoked after an element closing tag.

    Returns void

  • A new document has begun.

    Returns void

  • Invoked when a new element has been started, after the element's attributes have been read.

    Parameters

    • name: QName

      An object representing the element's name and namespace.

    • attributes: Attributes

      The attributes associated with the currently opening element.

    Returns void

  • Provides a raw substring as a text node. The given text is expected to be decoded using decodeEntities.

    Parameters

    • str: string

    Returns void