scales.xml.xpath

Axis

trait Axis extends AnyRef

Base trait for XPath Axis, also provides common functionality

Linear Supertypes
AnyRef, Any
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Axis
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. abstract type T <: Iterable[xml.XmlPath]

Abstract Value Members

  1. abstract val cbf: CanBuildFrom[T, xml.XmlPath, T]

  2. abstract def empty: Iterable[xml.XmlPath]

  3. abstract def just(only: xml.XmlPath): Iterable[xml.XmlPath]

  4. abstract def newThis(xpathInfo: XPathInfo): XPath[T]

  5. abstract val path: XPathInfo

Concrete Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def ===(textValue: ⇒ String): XPath[T]

    simple test for string equality

  7. def \: XPath[T]

    simply forwards the current context, element\item specific versions exist that step downwards in document order

  8. def \+: XPath[T]

    all children unpacked, normal xpath requires the context in E1/E2, which hugely complicates things, so \ is this, \+ is \ in the case where unpacking is needed which just leaves \* varieties for elements.

  9. def \\: XPath[T]

    All descendants, uses XPathInfo eager to choose an implementation

  10. def \^: XPath[T]

    Parents of these paths

  11. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  12. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  13. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  15. final def filter(pred: (xml.XmlPath) ⇒ Boolean): XPath[T]

    filter through the current matches

  16. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  18. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  19. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  20. def last_<(n: ⇒ Int): XPath[T]

    Equivalent to [last() < n]

  21. def last_==(n: ⇒ Int): XPath[T]

    Equivalent to [last() = n]

  22. def last_>(n: ⇒ Int): XPath[T]

    Equivalent to [last() > n]

  23. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  24. final def notify(): Unit

    Definition Classes
    AnyRef
  25. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  26. def pos(pos: ⇒ Int): XPath[T]

    1 index based, per spec, but unsure if it should be

  27. def pos_<(pos: ⇒ Int): XPath[T]

    Equivalent to [position() < pos]

  28. def pos_==(p: ⇒ Int): XPath[T]

  29. def pos_>(pos: ⇒ Int): XPath[T]

    Equivalent to [position() > pos]

  30. def pos_eq_last: XPath[T]

    Equivalent to position() = last()

  31. def process(newNodes: Iterable[Iterable[xml.XmlPath]], info: XPathInfo = path): XPath[T]

  32. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  33. def toString(): String

    Definition Classes
    AnyRef → Any
  34. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def xfilter(f: (Iterable[xml.XmlPath]) ⇒ Boolean): XPath[T]

  38. final def xflatMap(f: (Iterable[xml.XmlPath]) ⇒ Iterable[Iterable[xml.XmlPath]]): XPath[T]

    x prefixed to avoid disturbing the use of an xpath as an iterable

  39. final def xlast(onN: (Int) ⇒ Boolean): XPath[T]

    Attributes
    protected
  40. final def xmap(f: (Iterable[xml.XmlPath]) ⇒ Iterable[xml.XmlPath]): XPath[T]

Inherited from AnyRef

Inherited from Any

Ungrouped