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 classDocumentReader.EndTheEndobject is used to represent the end of an element.private static classDocumentReader.StartTheStartobject is used to represent the start of an XML element.private static classDocumentReader.TextTheTextobject is used to represent a text event.(package private) classEventElementTheEventElementobject is used to represent an event that has been extracted from the XML document.(package private) classEventTokenTheEventTokenobject is used to represent an event that has been extracted from the XML document.private static classPullReader.EndTheEndobject is used to represent the end of an element.private static classPullReader.StartTheStartobject is used to represent the start of an XML element.private static classPullReader.TextTheTextobject is used to represent a text event.private static classStreamReader.EndTheEndobject is used to represent the end of an element.private static classStreamReader.StartTheStartobject is used to represent the start of an XML element.private static classStreamReader.TextTheTextobject is used to represent a text event.Fields in org.simpleframework.xml.stream declared as EventNode Modifier and Type Field Description private EventNodeInputElement. nodeThis is the XML element that this node provides access to.private EventNodeDocumentReader. peekThis is used to keep track of any events that were peeked.private EventNodePullReader. peekThis is the previous node that has been read by a peek.private EventNodeStreamReader. peekThis is used to keep track of any events that were peeked.private EventNodeInputPosition. sourceThis 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 EventNodeDocumentReader. convert(org.w3c.dom.Node node)This is used to convert the provided node in to an event.EventNodeDocumentReader. next()This is used to take the next node from the document.EventNodeEventReader. next()This is used to take the next node from the document.EventNodePullReader. next()This is used to take the next node from the document.EventNodeStreamReader. next()This is used to take the next node from the document.EventNodeDocumentReader. peek()This is used to peek at the node from the document.EventNodeEventReader. peek()This is used to peek at the node from the document.EventNodePullReader. peek()This is used to peek at the node from the document.EventNodeStreamReader. peek()This is used to peek at the node from the document.private EventNodeDocumentReader. read()This is used to read the next node from the document.private EventNodeDocumentReader. read(org.w3c.dom.Node node)This is used to read the next node from the document.private EventNodePullReader. read()This is used to read the next node from the document.private EventNodeStreamReader. 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 voidInputNodeMap. build(EventNode element)This is used to insert all attributes belonging to the start element to the map.private booleanNodeReader. isName(EventNode node, java.lang.String name)This is used to determine the name of the node specified.private InputNodeNodeReader. 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 theInputElementobject.InputNodeMap(InputNode source, EventNode element)Constructor for theInputNodeMapobject.InputPosition(EventNode source)Constructor for theInputPositionobject.
-