XmlEvent

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.

Companion:
object
trait HasLocation
class Object
trait Matchable
class Any
trait ElemEnd
trait ElemStart
trait Text

Value members

Concrete methods

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

Inherited methods

def location: ContextLocation
Inherited from:
HasLocation