visit method

void visit(
  1. XmlEvent event
)

Helper to visit an XmlEvent using this visitor by dispatching through the provided event.

Implementation

void visit(XmlEvent event) => event.accept(this);