Packages

case object Root extends NodeCursor with Product with Serializable

Linear Supertypes
Product, Equals, NodeCursor, WithModifierSupport[XmlNode], VCursor[XmlNode, NodeCursor], Cursor[XmlNode], Serializable, Dynamic, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Root
  2. Product
  3. Equals
  4. NodeCursor
  5. WithModifierSupport
  6. VCursor
  7. Cursor
  8. Serializable
  9. Dynamic
  10. AnyRef
  11. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. type Focus = XmlNode
    Definition Classes
    VCursorCursor

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def *: NodeCursor
    Definition Classes
    NodeCursor
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. def \(nodeName: String): NodeCursor
    Definition Classes
    NodeCursor
  6. def \\(nodeName: String): NodeCursor
    Definition Classes
    NodeCursor
  7. def andThen(nextNodeCursor: NodeCursor): NodeCursor
    Definition Classes
    NodeCursor
  8. def apply(index: Int): NodeCursor
    Definition Classes
    NodeCursor
  9. def applyDynamic(nodeName: String)(index: Int): NodeCursor
    Definition Classes
    NodeCursor
  10. def as[T](implicit arg0: Decoder[T]): FreeCursor[Xml, T]

    Create a FreeCursor which represent a cursor with a free T type as result of the focusing, this implies that a Decoder instance is need to convert the fixed Xml type of the Cursor to the free T type of the FreeCursor.

    Create a FreeCursor which represent a cursor with a free T type as result of the focusing, this implies that a Decoder instance is need to convert the fixed Xml type of the Cursor to the free T type of the FreeCursor.

    So, practically speaking, when the FreeCursor is applied this Cursor is applied and the result is decoded using the specified Decoder for type T.

    T

    free type in which decode the current cursor result

    returns

    A new FreeCursor

    Definition Classes
    Cursor
  11. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  12. def atIndex(index: Int): NodeCursor
    Definition Classes
    NodeCursor
  13. def attr(key: String): AttrCursor
    Definition Classes
    NodeCursor
  14. def attrAt(index: Long): AttrCursor
    Definition Classes
    NodeCursor
  15. def attrHead: AttrCursor
    Definition Classes
    NodeCursor
  16. def attrLast: AttrCursor
    Definition Classes
    NodeCursor
  17. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  18. def deepDown(nodeName: String): NodeCursor
    Definition Classes
    NodeCursor
  19. def down(nodeName: String): NodeCursor
    Definition Classes
    NodeCursor
  20. def downPath(path: String): NodeCursor
    Definition Classes
    NodeCursor
  21. def downWildcard: NodeCursor
    Definition Classes
    NodeCursor
  22. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def equals(obj: Any): Boolean
    Definition Classes
    NodeCursor → AnyRef → Any
  24. def filter(p: (XmlNode) => Boolean): NodeCursor
    Definition Classes
    NodeCursor
  25. def find(p: (XmlNode) => Boolean): NodeCursor
    Definition Classes
    NodeCursor
  26. def focus(xml: XmlNode): Result[XmlNode]

    Apply the current cursor to the specified input.

    Apply the current cursor to the specified input. This allows to select a precise part of the Xml tree.

    The method is pure and return a Left when the focusing fails

    returns

    Right when succeed Left when fail

    Definition Classes
    RootCursor
  27. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  28. def head: NodeCursor
    Definition Classes
    NodeCursor
  29. def history: List[Op]
    Definition Classes
    RootNodeCursor
  30. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  31. val isRoot: Boolean
    Definition Classes
    RootNodeCursor
  32. def last: NodeCursor
    Definition Classes
    NodeCursor
  33. val lastCursor: NodeCursor
    Attributes
    protected
    Definition Classes
    RootVCursor
  34. def modify(modifier: Endo[XmlNode]): Modifier[XmlNode]
    Definition Classes
    NodeCursor → WithModifierSupport
  35. def modifyGroup(modifier: Endo[XmlNode.Group]): Modifier[XmlNode]
    Definition Classes
    NodeCursor
  36. def modifyNode(modifier: Endo[Node]): Modifier[XmlNode]
    Definition Classes
    NodeCursor
  37. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  38. def noop: NodeCursor
    Definition Classes
    NodeCursor
  39. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  40. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  41. final lazy val path: String

    A String representation of the cursor.

    A String representation of the cursor.

    returns

    a String which represent the cursor path

    Definition Classes
    NodeCursorCursor
  42. def productElementName(n: Int): String
    Definition Classes
    Product
  43. def productElementNames: Iterator[String]
    Definition Classes
    Product
  44. def selectDynamic(nodeName: String): NodeCursor
    Definition Classes
    NodeCursor
  45. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  46. def text: TextCursor
    Definition Classes
    NodeCursor
  47. final def toString(): String
    Definition Classes
    Cursor → AnyRef → Any
  48. final def up: NodeCursor
    Definition Classes
    VCursor
  49. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  50. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  51. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  52. def |(p: (XmlNode) => Boolean): NodeCursor
    Definition Classes
    NodeCursor

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from Product

Inherited from Equals

Inherited from NodeCursor

Inherited from WithModifierSupport[XmlNode]

Inherited from VCursor[XmlNode, NodeCursor]

Inherited from Cursor[XmlNode]

Inherited from Serializable

Inherited from Dynamic

Inherited from AnyRef

Inherited from Any

Ungrouped