XmlEvent

io.dylemma.spac.xml.XmlEvent
See theXmlEvent companion object
sealed trait XmlEvent extends HasLocation

Spac's internal representation of XML "events". Third-party xml streaming classes like javax.xml.stream or fs2-data can be supported by providing an AsXmlEvent implementation which converts the third-party event type into this type.

Attributes

Companion
object
Graph
Supertypes
trait HasLocation
class Object
trait Matchable
class Any
Known subtypes
trait ElemEnd
trait ElemStart
trait Text

Members list

Value members

Concrete methods

def asElemEnd: Option[ElemEnd]
def asElemStart: Option[ElemStart]
def asText: Option[Text]

Inherited methods

def location: ContextLocation

Attributes

Inherited from:
HasLocation