public class ListEventConsumer extends Object implements XMLEventConsumer
XMLEventConsumer that stores all added events in a List.| Constructor and Description |
|---|
ListEventConsumer() |
ListEventConsumer(List events)
Constructs an instance that adds events to the provided list.
|
| Modifier and Type | Method and Description |
|---|---|
void |
add(XMLEvent event)
Adds the event to the internal list.
|
List |
getEvents()
Returns the
List of events added to this consumer. |
void |
reset()
Removes all events from the internal list, making it available for reuse.
|
void |
setEvents(List events)
Sets the
List to which events will be written. |
public ListEventConsumer()
public ListEventConsumer(List events)
events - The list to which events will be added, or null.public void add(XMLEvent event) throws XMLStreamException
add in interface XMLEventConsumerXMLStreamExceptionpublic List getEvents()
List of events added to this consumer.List of events added to this consumer.public void setEvents(List events)
List to which events will be written.events - The List to which events will be written.public void reset()
Copyright © 2020. All rights reserved.