3.5 XML Support
A XML parser creates a representation of a XML document according to a parsing model. Ideally you should choose a XML parser specifically for your needs. You have different parsing models:
- Tree Parser: This is what you will read everywhere as the "DOM parser"
- Event Parser: This is denoted by S_X and could be
- SAX Parser: Known as the "Push parser"
- StAX Parser: Known also too as the "Pull parser"
- VTD Parser : This is known as "Virtual Token Descriptor"