Trait/Object

scales.xml.xpath

Axis

Related Docs: object Axis | package xpath

Permalink

trait Axis extends AnyRef

Base trait for XPath Axis, also provides common functionality

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Axis
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

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

    Permalink

Abstract Value Members

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

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

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

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

    Permalink
  5. abstract val path: XPathInfo

    Permalink

Concrete Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def ===(textValue: ⇒ String): XPath[T]

    Permalink

    simple test for string equality

  5. def \: XPath[T]

    Permalink

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

  6. def \+: XPath[T]

    Permalink

    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.

  7. def \\: XPath[T]

    Permalink

    All descendants, uses XPathInfo eager to choose an implementation

  8. def \^: XPath[T]

    Permalink

    Parents of these paths

  9. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  10. def clone(): AnyRef

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

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

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

    Permalink

    filter through the current matches

  14. def finalize(): Unit

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

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

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

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

    Permalink

    Equivalent to [last() < n]

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

    Permalink

    Equivalent to [last() = n]

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

    Permalink

    Equivalent to [last() > n]

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

    Permalink
    Definition Classes
    AnyRef
  22. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit

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

    Permalink

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

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

    Permalink

    Equivalent to [position() < pos]

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

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

    Permalink

    Equivalent to [position() > pos]

  28. def pos_eq_last: XPath[T]

    Permalink

    Equivalent to position() = last()

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

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

    Permalink
    Definition Classes
    AnyRef
  31. def toString(): String

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

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

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

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

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

    Permalink

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

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

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

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped