Is there a way to build a StAX filter chain?
问题 Making custom transformations for different event types with StAX using EventFilter and StreamFilter I feel being forced into a procedural implementation - extract these events and process them, filter those events and process them, than put all the results back together and return. SAX seems to have a really nice feature there - chainable filters based on XMLFilters. I would prefer to keep my implementation StAX-based, but to somehow incorporate or emulate the chainable filters from SAX. Can