Uses of Interface
org.simpleframework.xml.stream.EventNode
-
Packages that use EventNode Package Description org.simpleframework.xml.stream -
-
Uses of EventNode in org.simpleframework.xml.stream
Classes in org.simpleframework.xml.stream that implement EventNode Modifier and Type Class Description private static class
DocumentReader.End
TheEnd
object is used to represent the end of an element.private static class
DocumentReader.Start
TheStart
object is used to represent the start of an XML element.private static class
DocumentReader.Text
TheText
object is used to represent a text event.(package private) class
EventElement
TheEventElement
object is used to represent an event that has been extracted from the XML document.(package private) class
EventToken
TheEventToken
object is used to represent an event that has been extracted from the XML document.private static class
PullReader.End
TheEnd
object is used to represent the end of an element.private static class
PullReader.Start
TheStart
object is used to represent the start of an XML element.private static class
PullReader.Text
TheText
object is used to represent a text event.private static class
StreamReader.End
TheEnd
object is used to represent the end of an element.private static class
StreamReader.Start
TheStart
object is used to represent the start of an XML element.private static class
StreamReader.Text
TheText
object is used to represent a text event.Fields in org.simpleframework.xml.stream declared as EventNode Modifier and Type Field Description private EventNode
InputElement. node
This is the XML element that this node provides access to.private EventNode
DocumentReader. peek
This is used to keep track of any events that were peeked.private EventNode
PullReader. peek
This is the previous node that has been read by a peek.private EventNode
StreamReader. peek
This is used to keep track of any events that were peeked.private EventNode
InputPosition. source
This is the XML event that the position is acquired for.Methods in org.simpleframework.xml.stream that return EventNode Modifier and Type Method Description private EventNode
DocumentReader. convert(org.w3c.dom.Node node)
This is used to convert the provided node in to an event.EventNode
DocumentReader. next()
This is used to take the next node from the document.EventNode
EventReader. next()
This is used to take the next node from the document.EventNode
PullReader. next()
This is used to take the next node from the document.EventNode
StreamReader. next()
This is used to take the next node from the document.EventNode
DocumentReader. peek()
This is used to peek at the node from the document.EventNode
EventReader. peek()
This is used to peek at the node from the document.EventNode
PullReader. peek()
This is used to peek at the node from the document.EventNode
StreamReader. peek()
This is used to peek at the node from the document.private EventNode
DocumentReader. read()
This is used to read the next node from the document.private EventNode
DocumentReader. read(org.w3c.dom.Node node)
This is used to read the next node from the document.private EventNode
PullReader. read()
This is used to read the next node from the document.private EventNode
StreamReader. read()
This is used to read the next node from the document.Methods in org.simpleframework.xml.stream with parameters of type EventNode Modifier and Type Method Description private void
InputNodeMap. build(EventNode element)
This is used to insert all attributes belonging to the start element to the map.private boolean
NodeReader. isName(EventNode node, java.lang.String name)
This is used to determine the name of the node specified.private InputNode
NodeReader. readStart(InputNode from, EventNode event)
This is used to convert the start element to an input node.Constructors in org.simpleframework.xml.stream with parameters of type EventNode Constructor Description InputElement(InputNode parent, NodeReader reader, EventNode node)
Constructor for theInputElement
object.InputNodeMap(InputNode source, EventNode element)
Constructor for theInputNodeMap
object.InputPosition(EventNode source)
Constructor for theInputPosition
object.
-