XPath

smithy4s.xml.XPath
See theXPath companion object
case class XPath(reversedSegments: List[Segment])

Represents a path in the XML payload. Segments can be either tags, indexes (when dealing with collections), or attributes.

This allows, in particular, to identify which part of the payload is faulty, during decoding.

Attributes

Companion
object
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

def appendAttr(name: XmlQName): XPath
def appendIndex(index: Int): XPath
def appendTag(tag: XmlQName): XPath
def appendTag(tag: String): XPath
def render: String
def toPayloadPath: PayloadPath

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product