scales.xml.jaxen.package.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scales-xml-jaxen_2.11 Show documentation
Show all versions of scales-xml-jaxen_2.11 Show documentation
An alternate Scala Xml processing library
package scales.xml
/**
* This package provides string XPath evaluation based on the Jaxen library, sample use: {{{
* val xpath = ScalesXPath(str, Map(
"pre" -> "urn:prefix",
"jh" -> "urn:justHere",
"def" -> "urn:default"
))
* val result : Iterable[Either[AttributePath, XmlPath]] = xpath.evaluate(x : XmlPath)
* }}}
* NB: This class is only available with the scales-jaxen dependencies.
*/
package object jaxen {
}